Skip to content

Commit

Permalink
Add Echolisp, Realbasic, Rebol, Retro, Rtl2 and Xlisp
Browse files Browse the repository at this point in the history
Fixes: #533
Co-Authored-By: Alexander von Recum <avrecum@users.noreply.github.com>
  • Loading branch information
Richienb and avrecum committed Mar 30, 2020
1 parent 2075605 commit cb67fab
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -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)
Expand Down Expand Up @@ -458,20 +459,24 @@ 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)
* [Rockstar](r%5Crockstar.rock)
* [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)
Expand Down Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions e/echolisp.echolisp
@@ -0,0 +1 @@
(display "Hello World" "color:blue")
4 changes: 4 additions & 0 deletions r/realbasic.realbasic
@@ -0,0 +1,4 @@
Function Run(args() as String) As Integer
Print "Hello World"
Quit
End Function
1 change: 1 addition & 0 deletions r/rebol.reb
@@ -0,0 +1 @@
print "Hello World"
1 change: 1 addition & 0 deletions r/retro.retro
@@ -0,0 +1 @@
"Hello World" puts
12 changes: 12 additions & 0 deletions r/rtl2.rtl2
@@ -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 changes: 2 additions & 0 deletions x/xlisp.xlisp
@@ -0,0 +1,2 @@
(DISPLAY "Hello World")
(NEWLINE)

0 comments on commit cb67fab

Please sign in to comment.