June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -0,0 +1 @@
U8 i;

View file

@ -0,0 +1,2 @@
U8 b1 = 8;
U8 b2 = b1 * 10;

View file

@ -0,0 +1 @@
U8 uint1, uint2, uint3;

View file

@ -0,0 +1 @@
U8 *str = "The HolyC Language";

View file

@ -0,0 +1,13 @@
global gvar # a global
procedure main(arglist) # arglist is a parameter of main
local a,b,i,x # a, b, i, x are locals withing main
static y # a static (silly in main)
x := arglist[1]
a := 1.0
i := 10
b := [x,a,i,b]
# ... rest of program
end