Add tasks for all the new languages

This commit is contained in:
Tina Müller 2016-12-05 23:44:36 +01:00
parent 9dc3c2bb62
commit bba7bfd280
13208 changed files with 134745 additions and 0 deletions

View file

@ -0,0 +1,3 @@
x = 23
y = "Hello world!"
z = TRUE -- same effect as z = 1

View file

@ -0,0 +1,3 @@
on foo
put x
end

View file

@ -0,0 +1,2 @@
put value("x")
-- <Void> -- means: undefined

View file

@ -0,0 +1,4 @@
on foo
x = VOID
put x
end

View file

@ -0,0 +1,4 @@
global x
on foo
put x
end

View file

@ -0,0 +1,4 @@
on foo
global x
put x
end

View file

@ -0,0 +1 @@
_global.x = 23

View file

@ -0,0 +1 @@
put _global.x