3 supported platforms

This commit is contained in:
2019-05-15 14:09:13 -06:00
parent ca51b07278
commit 3d99159102
5 changed files with 18 additions and 2 deletions

2
.gitignore vendored
View File

@@ -4,3 +4,5 @@ transcript.hlog
validating.hlog validating.hlog
js/hank.js js/hank.js
cpp/ cpp/
out.n
test-output.txt

View File

@@ -10,6 +10,7 @@ Supported targets:
* JavaScript * JavaScript
* C++ * C++
* Neko
## Comparison with Ink and Inkjs ## Comparison with Ink and Inkjs

View File

@@ -123,7 +123,7 @@ class HInterface {
var type1 = Std.string(Type.typeof(val)); var type1 = Std.string(Type.typeof(val));
var type2 = Std.string(Type.typeof(val2)); var type2 = Std.string(Type.typeof(val2));
//if (type1 != type2) //if (type1 != type2)
trace('$val: $type1 became $val2: $type2'); //trace('$val: $type1 became $val2: $type2');
return val2; return val2;
} }

View File

@@ -55,6 +55,10 @@ class LogUtil {
return "interp"; return "interp";
#end #end
#if neko
return "neko";
#end
return "unknown"; return "unknown";
} }

View File

@@ -21,4 +21,13 @@ hxml/internals.hxml
-cpp cpp -cpp cpp
-cmd cpp/Examples -cmd cpp/Examples
hxml/examples.hxml hxml/examples.hxml
--next --next
-neko out.n
-cmd neko out.n
hxml/internals.hxml
--next
-neko out.n
-cmd neko out.n
hxml/examples.hxml