Code: Select all
input "Type something: ",a$
if a$="hello" then Print "Hi yourself"
Sleep
End
Then open the compiled EXE in Notepad. Look near the bottom or do a search and you'll see that all three text strings contained in the program appear in plain ascii format in the EXE file, readable by anyone who opens it that way.
Is there any way to avoid this??? Can it be compiled in a way that will hide or garble everything to anyone who reads it in an ascii editor??