v2 / vlib / v / fmt / tests / vscript_keep.vv
9 lines · 8 sloc · 155 bytes · 8a8978fb01a401bdf706c71e5f67e55e80dbb148
Raw
1#!/usr/local/bin/v run
2
3x := 5
4println(x) // comment after
5println('b')
6// comment between
7println('c')
8mut numbers := [1, 3, 2]
9numbers.sort() // 1, 2, 3
10