Computer Science Canada

A brief look at the language that begot Python: ABC

Author:  wtd [ Thu Aug 26, 2004 4:22 am ]
Post subject:  A brief look at the language that begot Python: ABC

http://homepages.cwi.nl/~steven/abc/

code:
>>> def greet(name):
...     print "Hello " + name
...
>>> greet("world")
Hello world
>>>


code:
>>> HOW TO GREET name:
HOW TO GREET name:
   WRITE "hello " ^ name

>>> GREET "world"
hello world
>>> ?


: