How do you use the second edit slot (shown as slot number 1) and have the code for example: Print"Hello" in the second slot (still shown as slot 1) actually print hello
Example:
Page 0:
Load "PRG2:helloWorld"
USE 2 'This let you use the functions of the page 2
helloWorld
Page 2:
COMMON DEF helloWorld
? "HELLO WORLD"
END