Home

About Me | Sharp Wizard OZ-700 Series | Cool Accessories | Programing | Software | Data | Links | Contact Me
Omar's Wizard Site
Programing

First of youll have to download BSK from mywizard.com

You can look in the BSK manual if you know a bit about programming, but if you dont know nothing about
Programming (like I first did) youre going to need some help so lets get started.

Every command must start with a line number and must be in numeric order.
You can copy and paste the examples below to BSK and compile, make wzd and download to your wizard.

Example 1.

10 wait 10
15 cls
20 print"My name is Omar"
30 input"What is your name?";a$
40 print"Nice to meet you"
50 print"bye!"
60 end

In the example above...
The "wait" 10 command makes the program wait 1 second.
The "cls" command clears the screen.
The "print" command prints text on the screen.
The "input" command lets you type in text.
The "end" command ends the program.

If you have any other question email me.

E-mail me here

Download BSK

Click here to download Basic Software Development Kit.

Two very good commands are the "if and then" command and the "goto" command.
See it's effectiveness below.

Example 2
10 wait 10
20 cls
30 input"press (p) for print (w) for wait and (i) for input-";a$
40 if a$="p" then 70
50 if a$="w" then 80
60 if a$="i" then 90
65 goto 30
70 print"print"
75 goto 30
80 print"wait"
85 goto 30
90 print"input"
110 end

In the example above...
In the "if and then" command if press (p) and then press enter the program is then directed to line 70 and
prints the word 'print'.
If you press any key other than p,w,i the "goto" command directs the program to line 20.