micropython

Annotated tests/class_init_code.py

671:76bdd4381b66
2013-07-04 Paul Boddie Fixed operator and built-in function invocations to use the "apply" function. Added a proper translation of print statements. syspython-as-target
paul@562 1
#!/usr/bin/env python
paul@562 2
paul@562 3
class C:
paul@562 4
    x = 1 + 2
paul@562 5
paul@562 6
result_3 = C.x
paul@562 7
paul@562 8
# vim: tabstop=4 expandtab shiftwidth=4