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 @@
hello()
func hello
see "Hello from function" + nl

View file

@ -0,0 +1,3 @@
first() second()
func first see "message from the first function" + nl
func second see "message from the second function" + nl

View file

@ -0,0 +1,2 @@
sum(3,5) sum(1000,2000)
func sum x,y see x+y+nl

View file

@ -0,0 +1,4 @@
# this program will print the hello world message first then execute the main function
See "Hello World!" + nl
func main
see "Message from the main function" + nl