https://github.com/cerus/hello-haxe
This repository contains projects that I wrote to learn / get familiar with Haxe.
https://github.com/cerus/hello-haxe
haxe hello-world test
Last synced: about 2 months ago
JSON representation
This repository contains projects that I wrote to learn / get familiar with Haxe.
- Host: GitHub
- URL: https://github.com/cerus/hello-haxe
- Owner: cerus
- Created: 2020-03-13T01:09:59.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-14T00:19:46.000Z (about 5 years ago)
- Last Synced: 2025-01-24T17:44:48.458Z (3 months ago)
- Topics: haxe, hello-world, test
- Language: Haxe
- Size: 128 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hello-haxe
This repository contains projects that I wrote to learn / get familiar with Haxe.## Projects
1. test: Just a project where I test everything that comes to mind.
2. file-list: My first use of Haxe's file system api. Prints the files and folder structure.## Building from source
To build the projects you need to [install Haxe](https://haxe.org/download/).\
If you want to compile to Java you need the [hxjava](https://lib.haxe.org/p/hxjava) library which you can get with Haxelib.\
If you want to compile to C++ you need the [hxcpp](https://lib.haxe.org/p/hxcpp) library which you can get with Haxelib.\To actually compile you need to run either `buildall.bat [interp|java|cpp|all]` or `build.bat [interp|java|cpp|all]` in the respective sub project.\
`interp` = Starts Haxe's own interpreter, `java` = Compiles to Java and runs the Jar, `cpp` = Compiles to c++, `all` = Runs all the other steps successively