mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
238 B
Plaintext
12 lines
238 B
Plaintext
module main
|
|
|
|
const (
|
|
source_root = 'temp' // some const
|
|
another = int(5) //
|
|
)
|
|
const (
|
|
windowpos_undefined_mask = C.SDL_WINDOWPOS_UNDEFINED_MASK // 0x1FFF0000u
|
|
windowpos_undefined = C.SDL_WINDOWPOS_UNDEFINED //
|
|
)
|
|
fn funky()
|