text/microsoft-resx
2.0
System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
Ever wanted to make your own ShiftOS software?
MindBlow is the world's first IDE designed specifically for ShiftOS.
It allows you to develop and run your own programs written in the
Brainfuck programming language.
The Brainfuck programming language is simple to learn and use.
There are a total of 8 commands in the language:
> Increment the memory pointer.
< Decrement the memory pointer.
+ Increment the number at the memory pointer.
- Decrement the number at the memory pointer.
. Print the ASCII value at the memory pointer.
, Get a character from the user and put its ASCII value at the memory pointer.
[ Jump to the next ']' if the number at the memory pointer is zero.
] Jump to the last '[' if the number at the memory pointer isn't zero.
Any characters that aren't valid commands will be ignored.
Here is a simple program to read 10 characters from the user and display them:
++++++++++
[->,.<]