-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement brainfuck language support #9
Comments
Brainfuck programs get big really quickly. Aren't we gonna hit the IRC message length? |
Doesn't matter; has brainfuck. Really though, you can do enough interesting things in a single IRC-line of brainfuck for it to be a fun (although gimmicky) feature. |
Hi chaps-
Alistair |
Re. infinite loops, just limit the execution to, say, 100 000 brainfuck instructions.
IIRC what fungot (another IRC bot) does is to separate code and input by a '!'. |
Separating code and input by a ! is something a bunch of things do, especially self-interpreters. |
We already have multiline execution support:
This works for all languages. As for input, yes, |
Not really sure how input would work. Maybe just give it the next thing they say if it's hanging on a ',' command.
The text was updated successfully, but these errors were encountered: