PowerBASIC is a programming language created in 1989.
#719on PLDB | 34Years Old | 235Users |
0Books | 0Papers |
PowerBASIC, formerly Turbo Basic, is the brand of several commercial compilers by PowerBASIC Inc. that compile a dialect of the BASIC programming language. There are both MS-DOS and Windows versions, and two kinds of the latter: Console and Windows. Read more on Wikipedia...
#Compile Exe ' using either PBCC6 or PBWIN10 compiler
#Dim All
Function PBMain
Local GW As Dword
' start a GRAPHIC WINDOW
Graphic Window New "graphic window", 100, 100, 200, 200 to GW
' show a coloured disc
Graphic Ellipse (10, 10)-(190, 190), %rgb_Red, %rgb_SeaGreen, 0
' wait for a keypress
Graphic Waitkey$
End Function
Feature | Supported | Token | Example |
---|---|---|---|
Comments | ✓ | ' A comment |
|
Line Comments | ✓ | ' | ' A comment |
Semantic Indentation | X |