From 051cca3a4d7835ce90d4b264989edc3590a96e2c Mon Sep 17 00:00:00 2001 From: derrick murphy <21dmurphy@cr.k12.ia.us> Date: Sun, 1 Apr 2018 23:25:44 -0500 Subject: [PATCH] add hello world in haxe! --- HelloWorld.hx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 HelloWorld.hx diff --git a/HelloWorld.hx b/HelloWorld.hx new file mode 100644 index 0000000..05c3f62 --- /dev/null +++ b/HelloWorld.hx @@ -0,0 +1,5 @@ +class HelloWorld { + static public function main(): Void { + trace("Hello, World!"); + } +}