mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 04:09:05 +00:00
7 lines
151 B
Python
7 lines
151 B
Python
math = pyimport "math"
|
|
sys = pyimport "sys"
|
|
sub = pyimport "subprocess"
|
|
|
|
print! math.pi
|
|
discard sub.run! ["echo", "hello"], shell := True
|
|
sys.exit 111
|