mirror of
https://github.com/vlang/v.git
synced 2025-09-14 23:12:33 +03:00
9 lines
342 B
Text
9 lines
342 B
Text
module testdata.basic
|
|
|
|
const source_root = 'temp' // some const
|
|
const another = int(5)
|
|
const windowpos_undefined_mask = C.SDL_WINDOWPOS_UNDEFINED_MASK // 0x1FFF0000u
|
|
Used to indicate that you don't care what the window position is.
|
|
const windowpos_undefined = C.SDL_WINDOWPOS_UNDEFINED
|
|
fn funky()
|
|
funky - comment for function below
|