Just Basic (computer)

9
 JUST BASIC  Just BASIC is a programming language for the Windows oper ating system. It is completely free and it is suitable for creating all kinds of applications for business, industry, educ ation and entertainment. Just BASIC borr ows many features from our popular commer cial product iberty BASIC. Because Just BASIC is based on the classic BASIC programming language it is easy to learn, and it has been e!tended with structured programming facilities and with easy to use "#I commands so you can create your own Windows programs without needing to learn all the underlying details of the Windows operating system. $ere are some features of Just BASIC% It&s free, of course' (ull tutorial and many e!ample programs arge online community Synta! colouring editor )asy source le*el debugging "raphics including sprites and printing Create standalone programs royalty free Sample Window of Just Basic

description

About computer.

Transcript of Just Basic (computer)

Page 1: Just Basic (computer)

7/21/2019 Just Basic (computer)

http://slidepdf.com/reader/full/just-basic-computer 1/9

JUST BASIC Just BASIC is a programming language for the Windows operating system. Itis completely free and it is suitable for creating all kinds of applications forbusiness, industry, education and entertainment. Just BASIC borrows manyfeatures from our popular commercial product iberty BASIC .

Because Just BASIC is based on the classic BASIC programming language it iseasy to learn, and it has been e!tended with structured programmingfacilities and with easy to use "#I commands so you can create your ownWindows programs without needing to learn all the underlying details of theWindows operating system.

$ere are some features of Just BASIC%

• It&s free, of course'

• (ull tutorial and many e!ample programs

• arge online community

• Synta! colouring editor

• )asy source le*el debugging

• "raphics including sprites and printing

• Create standalone programs royalty free

Sample Window of Just Basic

Page 2: Just Basic (computer)

7/21/2019 Just Basic (computer)

http://slidepdf.com/reader/full/just-basic-computer 2/9

Page 3: Just Basic (computer)

7/21/2019 Just Basic (computer)

http://slidepdf.com/reader/full/just-basic-computer 3/9

8. Cut #se to cut some codes in 0ust basic9. Copy #se to copy codes in 0ust basic:. +aste #se to paste codes in 0ust basic;. 7un 7un the 0ust basic

<. =ebug Check e*ery code in 0ust basic

. +references changing options1. >he World Just Basic Just basic tutorials3. $elp All about 0ust basic4. 7elease -otes ?ersion of 0ust basic

>abs in Just Basic

. (ile -ew Basic source /le, open, insert /le, sa*e, sa*e as, print,recent /les and e!it

1. )dit #ndo, cut, copy, paste, clear, select all, restore, /nd6replace, /ndagain

3. 7un run, debug, kill basic programs, make tkn@token /le, run tkn /leand freeform gui4. Setup preferences, )ditor font, +rinter font, )!ternal programs5. $elp Just basic help, 0ust basic tutorial, release notes, online

resources, 0ust basic news, 0ust basic links, about 0ust basic.

"etting Started• +rint +rint te!t in the main window

Click the play button to run the program. >ip% ou can use ShiftDf5 to run the program

Page 4: Just Basic (computer)

7/21/2019 Just Basic (computer)

http://slidepdf.com/reader/full/just-basic-computer 4/9

Window will show the output of the program.

Sa*ing Just Basic (ile

Page 5: Just Basic (computer)

7/21/2019 Just Basic (computer)

http://slidepdf.com/reader/full/just-basic-computer 5/9

When sa*ing 0ust basic /le do not erase the e!tension name @.bas e!ampleEmybasic.basF

• ocate ocate te!t in the main window

2utput

Page 6: Just Basic (computer)

7/21/2019 Just Basic (computer)

http://slidepdf.com/reader/full/just-basic-computer 6/9

locate 3@! position on the screen ,5@y position on the screen %print GI&m hereG

• et Assign *alue to *ariable

?ariables can use words and letters or combination of words and number likethe gi*en e!ample.

Semicolon use to combine strings and *alue together.

• Input "et data from keyboard, /le or button

Page 7: Just Basic (computer)

7/21/2019 Just Basic (computer)

http://slidepdf.com/reader/full/just-basic-computer 7/9

mynum and mynum1 are number *ariables.

2utput

)nter any number in the st and 1nd *alue

>he program will add the *alue of mynum and mynum1

String *ariable

Page 8: Just Basic (computer)

7/21/2019 Just Basic (computer)

http://slidepdf.com/reader/full/just-basic-computer 8/9

String +roperties

Page 9: Just Basic (computer)

7/21/2019 Just Basic (computer)

http://slidepdf.com/reader/full/just-basic-computer 9/9

Code

en@string *ariable "etting the length of the string.7ightH@string *ariable, how many characters "etting the rightmostcharacter of the string.

id@string *ariable, starting point, how many characters "etting themiddle character of the string.

eftH@string *ariable, how many characters "etting the leftmost characterof the string.#pperH@string *ariable >ransform the string into uppercase.

owerH@string *ariable >ransform the string into lower case.2utput

• Cls use to clear the screen