36 lines
472 B
Plaintext
36 lines
472 B
Plaintext
\let asdf := 0b1101 as f32
|
|
\let poop :: 12.0 + 2.0 * asdf
|
|
|
|
\fn name(a b: f32) i32 {
|
|
\ ret (a + b) as i32
|
|
\}
|
|
|
|
\name 123.0 456.0
|
|
|
|
\let arr: []i32, arr2: [69]u8, ptr: ^i32
|
|
|
|
fn put_i32(val: i32) i32
|
|
|
|
let amogus := 500 + (put_i32 8008135)
|
|
|
|
put_i32 69 * amogus + 420
|
|
|
|
let a b := 5 1
|
|
|
|
if a == 5 {
|
|
if b {
|
|
put_i32 123
|
|
} else {
|
|
put_i32 69
|
|
}
|
|
} elif a == 2 {
|
|
put_i32 456
|
|
} else {
|
|
put_i32 420
|
|
}
|
|
|
|
for a != 0 {
|
|
put_i32 (1 << a)
|
|
a = a - 1
|
|
}
|