mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 04:24:43 +00:00
12 lines
258 B
Python
12 lines
258 B
Python
time = pyimport "time"
|
|
tqdm = pyimport "tqdm"
|
|
|
|
for! tqdm.Tqdm!(0..<100), _ =>
|
|
time.sleep! 0.01
|
|
|
|
plt = pyimport "matplotlib/pyplot"
|
|
|
|
discard plt.plot! 0..<10, [2, 3, 2, 3, 2, 3, 2, 3, 2, 3]
|
|
discard plt.title! "My Plot"
|
|
discard plt.xlabel! "X"
|
|
plt.show!()
|