Now try google translate, hah
https://my.mixtape.moe/xzkoyb.txt
Could someone translate this compiler
Root / Programming Questions / [.]
raimondzCreated:
Hi, I found a program that compile code in SmileBasic. Here is the link of the program:
http://wiki.hosiken.jp/petc3gou/?Toukou%2FSmileBasic3-CustomCompiler
Basically, you could make a main App, include other files into it and make "modules"(It seem something similar to classes or struct if you know C).
The problem is that the error messages are in japanese.
I hope that someone could translate this because it's a very useful tool for big projects.
This forum needs a "like" button.
I don't actually need a like button. I can just express my liking things with words.
I translated only the messages that appear when the compiler fail. Also, fixed the error with the comma.
I don't know if I can post this on program but here is the key if anyone want to use this for their project.
4KS3NEJX
There is an issue that I haven't solve yet: Function that use parenthesis need spaces on the argument.
Example:
RGB(0,50,0) will fail, but RGB( 0,50,0 ) won't.
doSomething() also fail, but doSomething( ) won't.