User profile: Kikiman

User info
User name:Kikiman
History
Joined:
Number of posts:36
Latest posts:

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 interpreter
Hello, I'm making a small interpreter. I hope to get rid of compilers and start building my own prog...

Get full path of file
Hi, I wanted to make my program read the file "input.txt". I did it successfully, but now I want to ...

understanding loops
Question 1 : [code] while(number != 0) { if (number % 3 == 0) { number = number + 4; ...