This website works better with JavaScript.
Home
Help
Register
Sign In
miggaz_elquez
/
brainfuck
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix bug in brainfuck.py (The `-i` option wasn't effective)
master
miggazElquez
1 year ago
parent
61b4c2cc9c
commit
84f23ac729
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
brainfuck.py
+ 1
- 1
brainfuck.py
View File
@ -199,7 +199,7 @@ def main():
interpret
(
open
(
sys
.
argv
[
1
]
)
.
read
(
)
)
elif
len
(
sys
.
argv
)
==
3
:
if
sys
.
argv
[
1
]
==
'
-i
'
:
#oui c'est de lam erde comme manière de faire
interpret
(
sys
.
argv
[
1
]
)
interpret
(
sys
.
argv
[
2
]
)
else
:
repl
(
)
Write
Preview
Loading…
Cancel
Save