+ 2
Can I use html and js to make a new coding language compiler?
3 Antworten
+ 2
Yes you can
+ 1
JS yeah; HTML is visual and would be of no use itself.
0
HTML definitely not. JS probably, but it won't be easy since JS itself isn't a compiled language.
You can instead make a transpiler, the most well know example of this is probably CoffeeScript (which produces JavaScript after transpiling).
Google for the differences between transpilers and compilers.