Add Echolisp, Realbasic, Rebol, Retro, Rtl2 and Xlisp

Fixes: #533
Co-Authored-By: Alexander von Recum <avrecum@users.noreply.github.com>
This commit is contained in:
Richie Bendall
2020-03-30 18:41:51 +13:00
parent 2075605fb4
commit cb67fabf2f
7 changed files with 27 additions and 0 deletions

View File

@@ -204,6 +204,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Dylan](d%5Cdylan.dl)
* [Dyvil](d%5CDyvil.dyv)
* [Ebuild](e%5Cebuild.ebuild)
* [Echolisp](e%5Cecholisp.echolisp)
* [Eiffel](e%5CEiffel.eiff)
* [Elixir](e%5Celixir.ex)
* [Elixir](e%5Celixir.exs)
@@ -458,13 +459,16 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Ratfor](r%5Cratfor.ratfor)
* [React](r%5Creact.js)
* [Readlink](r%5Creadlink.readlink)
* [Realbasic](r%5Crealbasic.realbasic)
* [Reason](r%5Creason.re)
* [Rebol](r%5Crebol.r)
* [Rebol](r%5Crebol.reb)
* [Recurse](r%5Crecurse.recurse)
* [Red](r%5CRed.red)
* [Redis](r%5Credis)
* [Refal](r%5Crefal.ref)
* [Restructuredtext](r%5CreStructuredText.rst)
* [Retro](r%5Cretro.retro)
* [Rexx](r%5Crexx.rexx)
* [Richtea](r%5Crichtea.tea)
* [Ring](r%5Cring.ring)
@@ -472,6 +476,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Roco](r%5Croco.roco)
* [Roy](r%5Croy.roy)
* [Rpg Iv](r%5CRPG-IV.rpgle)
* [Rtl2](r%5Crtl2.rtl2)
* [Ruby](r%5Cruby.rb)
* [Ruota](r%5Cruota.ruo)
* [Rust](r%5Crust.rs)
@@ -588,6 +593,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Xbase++](x%5Cxbase%2B%2B.prg)
* [Xbase](x%5Cxbase.dbf)
* [Xl](x%5Cxl.xl)
* [Xlisp](x%5Cxlisp.xlisp)
* [Xlogo](x%5Cxlogo.lgo)
* [Xml](x%5Cxml.xml)
* [Xpl0](x%5Cxpl0.xpl)

1
e/echolisp.echolisp Normal file
View File

@@ -0,0 +1 @@
(display "Hello World" "color:blue")

4
r/realbasic.realbasic Normal file
View File

@@ -0,0 +1,4 @@
Function Run(args() as String) As Integer
Print "Hello World"
Quit
End Function

1
r/rebol.reb Normal file
View File

@@ -0,0 +1 @@
print "Hello World"

1
r/retro.retro Normal file
View File

@@ -0,0 +1 @@
"Hello World" puts

12
r/rtl2.rtl2 Normal file
View File

@@ -0,0 +1,12 @@
TITLE Hello World;
LET NL=10;
EXT PROC(REF ARRAY BYTE) TWRT;
ENT PROC INT RRJOB();
TWRT("Hello World#NL#");
RETURN(1);
ENDPROC;

2
x/xlisp.xlisp Normal file
View File

@@ -0,0 +1,2 @@
(DISPLAY "Hello World")
(NEWLINE)