Make != match the 'not equal' in while statement
Created by: dvkt
Tiny while $string not equal to $string
statements are using ==
in the c++ code.
Script to test:
DATA:
string is text
char is text
i is number
PROCEDURE:
store "~imagination~" in string
store 0 in i
get character at i from string in char
while char is not equal to "" do
display i ":char: " char crlf
add 1 and i in i
get character at i from string in char
repeat
display i crlf