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

Add HelloWorld Haxe Programming #2065

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions HelloWorld.hx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package;

class HelloWorld {

static public function Main():Void {
trace ("Hello World");
}

}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ Go is a programming language created in 2009 by Google employees Robert Grieseme

- [x] **Haskell**

- [x] **Haxe**

Haxe is an open source toolkit based on a modern, high level, strictly typed programming language, a cross-compiler, a complete cross-platform standard library and ways to access each platform's native capabilities.

- [x] **HTML**

Html Stands For Hypertext Markup Language (HTML) is the standard markup language for creating web pages and web applications. With Cascading Style Sheets (CSS) and JavaScript, it forms a triad of cornerstone technologies for the World Wide Web.Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document.
Expand Down