envlang-csharp/Compilers/JS.cs
Suzanne Soy 5f11930009 WIP
2020-09-01 06:55:29 +00:00

13 lines
326 B
C#

namespace Compilers {
public class JS {
public static string Compile(Ast.AstNode source) {
return "process.stdout.write(String("
+ "\"NO JavaScript COMPILATION FOR NOW\""
/* + source.Match(
Int: i => i.ToString(),
String: s => $"'{s.ToString()}'"
)*/
+ "));";
}
}
}