holyc-lang
holyc-lang copied to clipboard
ERROR: Ran out of tokens
On any example HolyC program I've tried, when I go to compile it I will get an:
ERROR: line 7: Ran out of tokens
on an obscure line number.
The program:
U0 Function(U8 *name="Bob")
{
"%s\n",name;
}
Function;
Function("Terry");
Any idea why this happens? Am I doing something wrong? How can I fix it?