Report Bugs Here

Moderator: Mmiscool

User avatar
By raintime
#50127 The documentation gives an example of the load command as:

LOAD "\myscript.bas"

Notice that in the above example a BACKSLASH is used. But in the FILE MANAGER all files are shown using the FORWARD SLASH. So I tried BOTH, but neither of them work.

No success with any of the programs below:

'Attempt 1
'Test load command
load "\default.bas" 'does not work

'Attempt 2
'Test load command
load "/default.bas" 'does not work

'Attempt 3
'Test load command
load "default.bas" 'does not work

'Attempt 4
'Test load command 'maybe needs a wait command after?
load "/default.bas" 'does not work
wait


'Attempt 5
'Test load command 'maybe, like it shows in the example, LOAD must be in caps?
LOAD "/default.bas" 'does not work


I don't think the load command works :|