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 @@
{return #1 + ':'+#2}('a','b') // a:b

View file

@ -0,0 +1,2 @@
define test(a,b) => #1+':'+#2
test('y','z') // y:z

View file

@ -0,0 +1 @@
put the constantNames

View file

@ -0,0 +1 @@
the colornames

View file

@ -0,0 +1,15 @@
# contains arguments passed to the ursa
# interpreter on the command line
string<> args
# iodevice that points to the console by default
iodevice console
# contains "\n"
string endl
# represents false
boolean false
# represents true
boolean true

View file

@ -0,0 +1 @@
__DATE__, __DEBUG__, __FILE__, __LINE__, __NAME__, __TIME__

View file

@ -0,0 +1,3 @@
10 PRINT "The border colour is "; PEEK (23624): REM bordcr
20 PRINT "The ramtop address is "; PEEK (23730) + 256 * PEEK (23731): REM ramtop
30 POKE 23609,50: REM set keyboard pip to 50

View file

@ -0,0 +1,2 @@
$ jq -n -M --arg x 1 '$x|type' # (*)
"string"