Trouble making an interpreter[quote]switching on strings is something we could really use :)[/quote] Well, I still don't get it. ...
Trouble making an interpreter@kbw [quote] You could make it just process Unicode and just forget about ASCII. That's what other s...
Trouble making an interpreterHello, I'm making a small interpreter. I hope to get rid of compilers and start building my own prog...
Get full path of fileHi, I wanted to make my program read the file "input.txt". I did it successfully, but now I want to ...
understanding loopsQuestion 1 : [code] while(number != 0) { if (number % 3 == 0) { number = number + 4; ...