mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 04:09:05 +00:00
10 lines
190 B
Python
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
|