Name: Anonymous 2007-10-07 17:43
# lua
Lua 5.1.2 Copyright (C) 1994-2007 Lua.org, PUC-Rio
= 2+2
4
= 1/0
1.#INF
^Z
#
# lua
Lua 5.1.2 Copyright (C) 1994-2007 Lua.org, PUC-Rio
= 2+2
4
= 1/0
1.#INF
^Z
#
% python
Python 2.5.1 (r251:54863, Apr 19 2007, 11:03:39)
[GCC 4.1.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 2+2
4
>>> 1/0
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ZeroDivisionError: integer division or modulo by zero
>>> ^D