Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

Create helloworld.hx #352

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Create helloworld.hx
hello world in haxe, the multitarget language we all deserve
  • Loading branch information
hggomez authored Oct 29, 2018
commit 0e08b93c5aeb78f93029058a1971420f62329c3b
5 changes: 5 additions & 0 deletions helloworld.hx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class HelloWorld {
static public function main() {
trace("Hello World");
}
}