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,5 @@
Fix 3
Disp "INVERTED"
Fix 2
Disp "REGULAR",i
Pause 4500

View file

@ -0,0 +1,3 @@
import console.*
println( "${REVERSED}This is reversed.$RESET This is normal." )

View file

@ -0,0 +1,3 @@
local(esc = decode_base64('Gw=='))
stdout( #esc + '[7m Reversed Video ' + #esc + '[0m Normal Video ')

View file

@ -0,0 +1 @@
echo "\e[7mReversed\e[m Normal"

View file

@ -0,0 +1,3 @@
nverse = char(17)+char(128)+char(17)+char(15)
normal = char(17)+char(128+15)+char(17)+char(0)
see inverse + " inverse " + normal + " video"