erg/examples/import.er
Shunsuke Shibayama f178a011e0 Add module consts
2023-01-14 13:35:39 +09:00

10 lines
190 B
Python

a11y = import "a11y"
print! a11y.public
# print! a11y.private # error: private variable
print! a11y.C.x
c = a11y.C.new {.x = 0}
print! c.x
consts = import "consts"
print! consts.physics.G