diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-15 01:04:50 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-15 01:04:50 -0400 |
commit | 1b3c67ba06e3b41f308f9475968fe19f36b31f06 (patch) | |
tree | e7d32ca6dba3ab154a76f0c514ffed7a88a8baa3 /src/main.c | |
parent | i made things faster (diff) | |
download | brainfucked-1b3c67ba06e3b41f308f9475968fe19f36b31f06.tar.gz brainfucked-1b3c67ba06e3b41f308f9475968fe19f36b31f06.tar.bz2 brainfucked-1b3c67ba06e3b41f308f9475968fe19f36b31f06.zip |
fix bug and add zero instruction
Diffstat (limited to '')
-rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -20,6 +20,7 @@ /// ` Output null terminated string at current cell /// ~ Input string into current cells with max length in current cell /// % Clear screen +/// $ Set n cells to 0 where n is the count of the current cell int main(int argc, char** argv) { |