v / cmd / tools / vdoc / testdata / basic / basic.v
15 lines · 10 sloc · 374 bytes · 8eaaba6094456bb21833fddf20d22514e7dadcb2
Raw
1module basic
2
3pub const source_root = 'temp' // some const
4
5pub const another = int(5)
6
7// Used to indicate that you don't care what the window position is.
8pub const windowpos_undefined_mask = C.SDL_WINDOWPOS_UNDEFINED_MASK // 0x1FFF0000u
9
10pub const windowpos_undefined = C.SDL_WINDOWPOS_UNDEFINED
11
12// funky - comment for function below
13pub fn funky() {
14 println('hi')
15}
16