➜ ~ graalpython
Please note: This Python implementation is in the very early stages, and can run little more than basic benchmarks at this point.
>>> 1 / 0
[1] 3747 segmentation fault graalpython
➜ ~ python
Python 3.6.5 (default, Mar 30 2018, 06:42:10)
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 1 / 0
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ZeroDivisionError: division by zero
>>>