v2 / vlib / v / tests / printing / print_test.v
4 lines · 4 sloc · 49 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn test_print() {
2 println(2.0)
3 eprintln(2.0)
4}
5