Files
herolib/lib/lang/python/python_test.v
2024-12-25 09:23:31 +01:00

8 lines
135 B
V

module python
fn test_python() {
py := new() or { panic(err) }
py.update() or { panic(err) }
py.pip('ipython') or { panic(err) }
}