From 0e08b93c5aeb78f93029058a1971420f62329c3b Mon Sep 17 00:00:00 2001 From: Horacio Gomez <5641584+hggomez@users.noreply.github.com> Date: Mon, 29 Oct 2018 20:52:27 -0300 Subject: [PATCH] Create helloworld.hx hello world in haxe, the multitarget language we all deserve --- 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..cdeaeba --- /dev/null +++ b/helloworld.hx @@ -0,0 +1,5 @@ +class HelloWorld { + static public function main() { + trace("Hello World"); + } +}