2023-04-11 13:24:52 +00:00
|
|
|
const NULL 0 end
|
|
|
|
const false 0 end
|
|
|
|
const true 1 end
|
2023-03-22 12:58:11 +00:00
|
|
|
|
2023-04-11 13:24:52 +00:00
|
|
|
fn div with int int returns int int divmod drop end
|
|
|
|
fn mod with int int returns int int divmod swap drop end
|
|
|
|
fn / with int int returns int int div end
|
|
|
|
fn % with int int returns int int mod end
|
2023-03-22 12:58:11 +00:00
|
|
|
|
2023-04-11 13:24:52 +00:00
|
|
|
fn 2dup with any any returns any over over end
|
|
|
|
fn 2drop with any any returns any drop drop end
|
2023-03-22 12:58:11 +00:00
|
|
|
|
2023-04-11 13:24:52 +00:00
|
|
|
const sizeof(u64) 8 end
|
|
|
|
const sizeof(u32) 4 end
|
|
|
|
const sizeof(u16) 2 end
|
|
|
|
const sizeof(u8) 1 end
|