diff --git a/axeparser/goodbye.axe b/axeparser/goodbye.axe new file mode 100644 index 0000000..bb50a8d --- /dev/null +++ b/axeparser/goodbye.axe @@ -0,0 +1,9 @@ +.Goodbye +... +Axe Parser is s a compiled on-calculator programming language for Ti-8x+ series. +Here's the documentation : http://axe.eeems.ca/Documentation.pdf +Use this source file in a source to .8xp converter. +Uncomment (remove the dot before it) ClrHome if you want to erase the screen before displaying "Goodbye World". +... +.ClrHome +Disp "Goodbye World" diff --git a/haxe/Goodbye.hx b/haxe/Goodbye.hx new file mode 100644 index 0000000..d8c3517 --- /dev/null +++ b/haxe/Goodbye.hx @@ -0,0 +1,8 @@ +// Call haxe like this to interpret this file: +// haxe Goodbye.hx -main Goodbye --interp + +class Goodbye { + static public function main():Void { + trace("Goodbye World"); + } +} diff --git a/squirrel/goodbye.nut b/squirrel/goodbye.nut new file mode 100644 index 0000000..e5adbe5 --- /dev/null +++ b/squirrel/goodbye.nut @@ -0,0 +1 @@ +print("Goodbye World")