Import sys
Class Ostream: DEF __INIT __ (Self, file): self.file = file
Def __lshift __ (self): self.file.write (STR (OBJ)); Return Self
Cout = ostream (sys.stdout) CERR = ostream (sys.stderr) endl = '/ n'
AGE = 23name = 'albert'
Cout << 'Hello, World!' << Endl
Cout << 'name:' << name << Endl << 'agn:' << age << Endl