Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
1
Task/Special-variables/Lasso/special-variables-1.lasso
Normal file
1
Task/Special-variables/Lasso/special-variables-1.lasso
Normal file
|
|
@ -0,0 +1 @@
|
|||
{return #1 + ':'+#2}('a','b') // a:b
|
||||
2
Task/Special-variables/Lasso/special-variables-2.lasso
Normal file
2
Task/Special-variables/Lasso/special-variables-2.lasso
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
define test(a,b) => #1+':'+#2
|
||||
test('y','z') // y:z
|
||||
|
|
@ -0,0 +1 @@
|
|||
put the constantNames
|
||||
|
|
@ -0,0 +1 @@
|
|||
the colornames
|
||||
15
Task/Special-variables/Ursa/special-variables.ursa
Normal file
15
Task/Special-variables/Ursa/special-variables.ursa
Normal 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
|
||||
1
Task/Special-variables/XLISP/special-variables-1.xlisp
Normal file
1
Task/Special-variables/XLISP/special-variables-1.xlisp
Normal file
|
|
@ -0,0 +1 @@
|
|||
__DATE__, __DEBUG__, __FILE__, __LINE__, __NAME__, __TIME__
|
||||
3
Task/Special-variables/XLISP/special-variables-2.xlisp
Normal file
3
Task/Special-variables/XLISP/special-variables-2.xlisp
Normal 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
|
||||
2
Task/Special-variables/jq/special-variables.jq
Normal file
2
Task/Special-variables/jq/special-variables.jq
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
$ jq -n -M --arg x 1 '$x|type' # (*)
|
||||
"string"
|
||||
Loading…
Add table
Add a link
Reference in a new issue