Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 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