diff --git a/.gitignore b/.gitignore index 8b5c604..213f193 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ transcript.hlog validating.hlog js/hank.js cpp/ +out.n +test-output.txt diff --git a/README.md b/README.md index d2dd3da..4edc666 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Supported targets: * JavaScript * C++ +* Neko ## Comparison with Ink and Inkjs diff --git a/hank/HInterface.hx b/hank/HInterface.hx index 63a0537..f08a946 100644 --- a/hank/HInterface.hx +++ b/hank/HInterface.hx @@ -123,7 +123,7 @@ class HInterface { var type1 = Std.string(Type.typeof(val)); var type2 = Std.string(Type.typeof(val2)); //if (type1 != type2) - trace('$val: $type1 became $val2: $type2'); + //trace('$val: $type1 became $val2: $type2'); return val2; } diff --git a/hank/LogUtil.hx b/hank/LogUtil.hx index 07faece..ab4c95e 100644 --- a/hank/LogUtil.hx +++ b/hank/LogUtil.hx @@ -55,6 +55,10 @@ class LogUtil { return "interp"; #end +#if neko + return "neko"; +#end + return "unknown"; } diff --git a/hxml/all-platforms.hxml b/hxml/all-platforms.hxml index a209ff6..8eaad9c 100644 --- a/hxml/all-platforms.hxml +++ b/hxml/all-platforms.hxml @@ -21,4 +21,13 @@ hxml/internals.hxml -cpp cpp -cmd cpp/Examples hxml/examples.hxml ---next \ No newline at end of file +--next + +-neko out.n +-cmd neko out.n +hxml/internals.hxml +--next + +-neko out.n +-cmd neko out.n +hxml/examples.hxml \ No newline at end of file