Pytecode

From Esolang
Jump to navigation Jump to search

Python bytecode

examples

hello world

 3           0 LOAD_GLOBAL              0 (print)
             2 LOAD_CONST               1 ('hello world')
             4 CALL_FUNCTION            1
             6 POP_TOP
             8 LOAD_CONST               0 (None)
            10 RETURN_VALUE