vxx2 / vlib / v / checker / tests / import_mod_as_mod_err.vv
5 lines · 4 sloc · 55 bytes · b2e79dbebd5a46c12a4b0b5b224547c002925681
Raw
1import math as math
2
3fn main() {
4 println(math.e)
5}
6