erg/examples/external.er
Shunsuke Shibayama af3c912b17 feat: support tqdm
2023-02-25 01:58:37 +09:00

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!()