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