phil2bf : read and write http://www.philippe97.ca/phil2bf/ I just made it easier to read and write strings contained in arrays. This reads a string and prints it : --- array str 10 read str '\n write str --- This is my version of Hello, World. It asks for your name and writes it back with "Hello". If you do not give a name, it prints World. --- print Your\ name\ :\ array str 10 read str '\n print Hello,\ ifnot str+1 print World end write str print !\n --- Internally, strings start and end with a null byte. So, array size 10 means you can only store 8 bytes of text.