June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
18
Task/Literals-Integer/Limbo/literals-integer.limbo
Normal file
18
Task/Literals-Integer/Limbo/literals-integer.limbo
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
implement Command;
|
||||
|
||||
include "sys.m";
|
||||
sys: Sys;
|
||||
|
||||
include "draw.m";
|
||||
|
||||
include "sh.m";
|
||||
|
||||
init(nil: ref Draw->Context, nil: list of string)
|
||||
{
|
||||
sys = load Sys Sys->PATH;
|
||||
|
||||
sys->print("%d\n", 2r1111); # binary
|
||||
sys->print("%d\n", 8r17); # octal
|
||||
sys->print("%d\n", 15); # decimal
|
||||
sys->print("%d\n", 16rF); # hexadecimal
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue