mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
15 lines
374 B
V
15 lines
374 B
V
module basic
|
|
|
|
pub const source_root = 'temp' // some const
|
|
|
|
pub const another = int(5)
|
|
|
|
// Used to indicate that you don't care what the window position is.
|
|
pub const windowpos_undefined_mask = C.SDL_WINDOWPOS_UNDEFINED_MASK // 0x1FFF0000u
|
|
|
|
pub const windowpos_undefined = C.SDL_WINDOWPOS_UNDEFINED
|
|
|
|
// funky - comment for function below
|
|
pub fn funky() {
|
|
println('hi')
|
|
}
|