1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00

Adding QBjs support (experimental).

This commit is contained in:
Cory Smith 2022-06-10 20:09:02 -05:00
parent 93b5137f3e
commit 9dcddedd68
70 changed files with 560 additions and 0 deletions

View file

@ -18,6 +18,14 @@ I'd rather make another 25 liner. ;*)
Relsoft 2003
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "3dcube25.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/3d-cube/src/3dcube25.bas)
* [RUN "3dcube25.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/3d-cube/src/3dcube25.bas)
* [PLAY "3dcube25.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/3d-cube/src/3dcube25.bas)
### File(s)
* [3dcube25.bas](src/3dcube25.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "bezier.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/bezier/src/bezier.bas)
* [RUN "bezier.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/bezier/src/bezier.bas)
* [PLAY "bezier.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/bezier/src/bezier.bas)
### File(s)
* [bezier.bas](src/bezier.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "binclock.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/binary-clock/src/binclock.bas)
* [RUN "binclock.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/binary-clock/src/binclock.bas)
* [PLAY "binclock.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/binary-clock/src/binclock.bas)
### File(s)
* [binclock.bas](src/binclock.bas)

View file

@ -14,6 +14,14 @@
A Breakout clone with DXBall aspirations.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "blockout.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/blockout/src/blockout.bas)
* [RUN "blockout.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/blockout/src/blockout.bas)
* [PLAY "blockout.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/blockout/src/blockout.bas)
### File(s)
* [blockout.bas](src/blockout.bas)

View file

@ -14,6 +14,14 @@
A turn-based artillery game by Microsoft.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "castle.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/castle/src/castle.bas)
* [RUN "castle.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/castle/src/castle.bas)
* [PLAY "castle.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/castle/src/castle.bas)
### File(s)
* [castle.bas](src/castle.bas)

View file

@ -14,6 +14,14 @@
Here we present two (equivalent) methods for calculating the intersection points between any two circles.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "circleintersectcircle.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/circle-intersecting-circle/src/circleintersectcircle.bas)
* [RUN "circleintersectcircle.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/circle-intersecting-circle/src/circleintersectcircle.bas)
* [PLAY "circleintersectcircle.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/circle-intersecting-circle/src/circleintersectcircle.bas)
### File(s)
* [circleintersectcircle.bas](src/circleintersectcircle.bas)

View file

@ -14,6 +14,14 @@
This is an interactive (mouse-driven) demo that calculates the intersection of any line with any circle.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "circle-intersect-line.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/circle-intersecting-line/src/circle-intersect-line.bas)
* [RUN "circle-intersect-line.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/circle-intersecting-line/src/circle-intersect-line.bas)
* [PLAY "circle-intersect-line.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/circle-intersecting-line/src/circle-intersect-line.bas)
### File(s)
* [circle-intersect-line.bas](src/circle-intersect-line.bas)

View file

@ -14,6 +14,14 @@
Realistic collisions between sphreres in two dimensions.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "ball.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/colliding-ball-simulation/src/ball.bas)
* [RUN "ball.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/colliding-ball-simulation/src/ball.bas)
* [PLAY "ball.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/colliding-ball-simulation/src/ball.bas)
### File(s)
* [ball.bas](src/ball.bas)

View file

@ -14,6 +14,14 @@
Created by QB64 community member bplus.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "connectcircles.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/connect-circles/src/connectcircles.bas)
* [RUN "connectcircles.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/connect-circles/src/connectcircles.bas)
* [PLAY "connectcircles.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/connect-circles/src/connectcircles.bas)
### File(s)
* [connectcircles.bas](src/connectcircles.bas)

View file

@ -14,6 +14,14 @@
Created by QB community member darokin.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "darokin.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/darokin/src/darokin.bas)
* [RUN "darokin.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/darokin/src/darokin.bas)
* [PLAY "darokin.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/darokin/src/darokin.bas)
### File(s)
* [darokin.bas](src/darokin.bas)

View file

@ -14,6 +14,14 @@
Dropping Balls an attempt to build a pile by adjusting drop rate, elasticity, and gravity.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "droppingballs.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/dropping-balls/src/droppingballs.bas)
* [RUN "droppingballs.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/dropping-balls/src/droppingballs.bas)
* [PLAY "droppingballs.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/dropping-balls/src/droppingballs.bas)
### File(s)
* [droppingballs.bas](src/droppingballs.bas)

View file

@ -14,6 +14,14 @@
... all I could think is "why stop at circles when you can do ellipses?"
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "ellipse-intersect-line.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/ellipse-intersecting-line/src/ellipse-intersect-line.bas)
* [RUN "ellipse-intersect-line.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/ellipse-intersecting-line/src/ellipse-intersect-line.bas)
* [PLAY "ellipse-intersect-line.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/ellipse-intersecting-line/src/ellipse-intersect-line.bas)
### File(s)
* [ellipse-intersect-line.bas](src/ellipse-intersect-line.bas)

View file

@ -20,6 +20,14 @@ We develop four variations on the CIRCLE command in the form of four SUBs:
These works have been optimized for speed and respect for alpha transparency.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "ellipses.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/filled-circles-and-ellipses/src/ellipses.bas)
* [RUN "ellipses.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/filled-circles-and-ellipses/src/ellipses.bas)
* [PLAY "ellipses.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/filled-circles-and-ellipses/src/ellipses.bas)
### File(s)
* [ellipses.bas](src/ellipses.bas)

View file

@ -10,6 +10,14 @@
Fire dominates the lower screen.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "fire.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/fire/src/fire.bas)
* [RUN "fire.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/fire/src/fire.bas)
* [PLAY "fire.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/fire/src/fire.bas)
### File(s)
* [fire.bas](src/fire.bas)

View file

@ -16,6 +16,14 @@ Floormaper by Antoni Gual
for Rel's 9 LINER contest at QBASICNEWS.COM 1/2003
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "flrmp.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/floormaper/src/flrmp.bas)
* [RUN "flrmp.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/floormaper/src/flrmp.bas)
* [PLAY "flrmp.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/floormaper/src/flrmp.bas)
### File(s)
* [flrmp.bas](src/flrmp.bas)

View file

@ -14,6 +14,14 @@
Four-player pong game.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "fourpong.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/four-player-pong/src/fourpong.bas)
* [RUN "fourpong.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/four-player-pong/src/fourpong.bas)
* [PLAY "fourpong.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/four-player-pong/src/fourpong.bas)
### File(s)
* [fourpong.bas](src/fourpong.bas)

View file

@ -10,6 +10,14 @@
The legendary fractal fern.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "frac3.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/fractal-fern/src/frac3.bas)
* [RUN "frac3.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/fractal-fern/src/frac3.bas)
* [PLAY "frac3.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/fractal-fern/src/frac3.bas)
### File(s)
* [frac3.bas](src/frac3.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "fractal.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/fractal/src/fractal.bas)
* [RUN "fractal.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/fractal/src/fractal.bas)
* [PLAY "fractal.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/fractal/src/fractal.bas)
### File(s)
* [fractal.bas](src/fractal.bas)

View file

@ -18,6 +18,14 @@ Glen Jeh, 8/12/1994, William Yu (05-28-96)
' Converted to BASIC by William Yu (05-28-96)
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "globe.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/globe/src/globe.bas)
* [RUN "globe.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/globe/src/globe.bas)
* [PLAY "globe.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/globe/src/globe.bas)
### File(s)
* [globe.bas](src/globe.bas)

View file

@ -20,6 +20,14 @@
'-----------------------------------------------------------------------
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "gujero.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/gujero2/src/gujero.bas)
* [RUN "gujero.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/gujero2/src/gujero.bas)
* [PLAY "gujero.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/gujero2/src/gujero.bas)
### File(s)
* [gujero.bas](src/gujero.bas)

View file

@ -14,6 +14,14 @@
The longer you hold your mouse at one position, the more it starts to glow.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "inversejulia.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/inverse-julia-fractal-explorer/src/inversejulia.bas)
* [RUN "inversejulia.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/inverse-julia-fractal-explorer/src/inversejulia.bas)
* [PLAY "inversejulia.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/inverse-julia-fractal-explorer/src/inversejulia.bas)
### File(s)
* [inversejulia.bas](src/inversejulia.bas)

View file

@ -14,6 +14,14 @@
Automated Julia set explorer.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "juliarings.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/julia-rings/src/juliarings.bas)
* [RUN "juliarings.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/julia-rings/src/juliarings.bas)
* [PLAY "juliarings.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/julia-rings/src/juliarings.bas)
### File(s)
* [juliarings.bas](src/juliarings.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "kaleidoscopemill.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/kaleidoscope-mill/src/kaleidoscopemill.bas)
* [RUN "kaleidoscopemill.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/kaleidoscope-mill/src/kaleidoscopemill.bas)
* [PLAY "kaleidoscopemill.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/kaleidoscope-mill/src/kaleidoscopemill.bas)
### File(s)
* [kaleidoscopemill.bas](src/kaleidoscopemill.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "kaleidoscope.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/kaleidoscope/src/kaleidoscope.bas)
* [RUN "kaleidoscope.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/kaleidoscope/src/kaleidoscope.bas)
* [PLAY "kaleidoscope.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/kaleidoscope/src/kaleidoscope.bas)
### File(s)
* [kaleidoscope.bas](src/kaleidoscope.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "lightning.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/lightning-one/src/lightning.bas)
* [RUN "lightning.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/lightning-one/src/lightning.bas)
* [PLAY "lightning.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/lightning-one/src/lightning.bas)
### File(s)
* [lightning.bas](src/lightning.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "lightning2.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/lightning-two/src/lightning2.bas)
* [RUN "lightning2.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/lightning-two/src/lightning2.bas)
* [PLAY "lightning2.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/lightning-two/src/lightning2.bas)
### File(s)
* [lightning2.bas](src/lightning2.bas)

View file

@ -14,6 +14,14 @@
Graphical Lissajou's Figures. For added eye-candy-ness, I've changed the plot line to paint using HSB colors so that ink color will vary according to the current rotational angle.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "lissajous-curve-table.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/lissajous-curve-table/src/lissajous-curve-table.bas)
* [RUN "lissajous-curve-table.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/lissajous-curve-table/src/lissajous-curve-table.bas)
* [PLAY "lissajous-curve-table.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/lissajous-curve-table/src/lissajous-curve-table.bas)
### File(s)
* [lissajous-curve-table.bas](src/lissajous-curve-table.bas)

View file

@ -16,6 +16,14 @@
'------------------------------------------------------------------------
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "lissaj.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/lissajous-screensaver/src/lissaj.bas)
* [RUN "lissaj.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/lissajous-screensaver/src/lissaj.bas)
* [PLAY "lissaj.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/lissajous-screensaver/src/lissaj.bas)
### File(s)
* [lissaj.bas](src/lissaj.bas)

View file

@ -14,6 +14,14 @@
' Created by QB64 community member vince.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "lorenz.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/lorenz-attractor/src/lorenz.bas)
* [RUN "lorenz.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/lorenz-attractor/src/lorenz.bas)
* [PLAY "lorenz.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/lorenz-attractor/src/lorenz.bas)
### File(s)
* [lorenz.bas](src/lorenz.bas)

View file

@ -16,6 +16,14 @@
'------------------------------------------------------------------------
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "mandala.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/manadla/src/mandala.bas)
* [RUN "mandala.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/manadla/src/mandala.bas)
* [PLAY "mandala.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/manadla/src/mandala.bas)
### File(s)
* [mandala.bas](src/mandala.bas)

View file

@ -10,6 +10,14 @@
Mandelbrot animator.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "mandel.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/mandelbrot-animator/src/mandel.bas)
* [RUN "mandel.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/mandelbrot-animator/src/mandel.bas)
* [PLAY "mandel.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/mandelbrot-animator/src/mandel.bas)
### File(s)
* [mandel.bas](src/mandel.bas)

View file

@ -16,6 +16,14 @@
'------------------------------------------------------------------------
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "mandelb.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/mandelbrot-set-2003/src/mandelb.bas)
* [RUN "mandelb.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/mandelbrot-set-2003/src/mandelb.bas)
* [PLAY "mandelb.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/mandelbrot-set-2003/src/mandelb.bas)
### File(s)
* [mandelb.bas](src/mandelb.bas)

View file

@ -14,6 +14,14 @@
public domain, uses qb64's 2d prototype
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "qbguymandel.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/mandelbrot-set-2008/src/qbguymandel.bas)
* [RUN "qbguymandel.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/mandelbrot-set-2008/src/qbguymandel.bas)
* [PLAY "qbguymandel.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/mandelbrot-set-2008/src/qbguymandel.bas)
### File(s)
* [qbguymandel.bas](src/qbguymandel.bas)

View file

@ -56,6 +56,14 @@
'deadline. Yay for me.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "qbdemo.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/mandelbrot-zoomer/src/qbdemo.bas)
* [RUN "qbdemo.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/mandelbrot-zoomer/src/qbdemo.bas)
* [PLAY "qbdemo.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/mandelbrot-zoomer/src/qbdemo.bas)
### File(s)
* [qbdemo.bas](src/qbdemo.bas)

View file

@ -16,6 +16,14 @@ A demo to show rotation in 3D using MAPTRIANGLE 3D, without direct OpenGL statem
Librarian's Note: The sample given here is just one of a number of _MAPTRIANGLE(3D) examples which appear in Petr's post. That post is a good learning resource for anyone wanting to learn 3D graphics using _MAPTRIANGLE(3D). See https://qb64forum.alephc.xyz/index.php?topic=300.msg101478#msg101478
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "maptriangle3d.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/maptriangle-in-3d/src/maptriangle3d.bas)
* [RUN "maptriangle3d.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/maptriangle-in-3d/src/maptriangle3d.bas)
* [PLAY "maptriangle3d.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/maptriangle-in-3d/src/maptriangle3d.bas)
### File(s)
* [maptriangle3d.bas](src/maptriangle3d.bas)

View file

@ -14,6 +14,14 @@
If you look close, it spells F-e-l-l-i-p-p-e.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "darkomatrix.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/matrix-effect/src/darkomatrix.bas)
* [RUN "darkomatrix.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/matrix-effect/src/darkomatrix.bas)
* [PLAY "darkomatrix.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/matrix-effect/src/darkomatrix.bas)
### File(s)
* [darkomatrix.bas](src/darkomatrix.bas)

View file

@ -29,6 +29,14 @@
'Gbgames Chatname: QB4ever
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "mzupd2.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/mazes-of-misery/src/mzupd2.bas)
* [RUN "mzupd2.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/mazes-of-misery/src/mzupd2.bas)
* [PLAY "mzupd2.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/mazes-of-misery/src/mzupd2.bas)
### File(s)
* [mzupd2.bas](src/mzupd2.bas)

View file

@ -18,6 +18,14 @@
' Homepage: http://www.quickbasic.6x.to
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "mclock.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/mini-clock/src/mclock.bas)
* [RUN "mclock.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/mini-clock/src/mclock.bas)
* [PLAY "mclock.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/mini-clock/src/mclock.bas)
### File(s)
* [mclock.bas](src/mclock.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "multimill.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/multi-mill/src/multimill.bas)
* [RUN "multimill.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/multi-mill/src/multimill.bas)
* [PLAY "multimill.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/multi-mill/src/multimill.bas)
### File(s)
* [multimill.bas](src/multimill.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "mystify.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/mystify/src/mystify.bas)
* [RUN "mystify.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/mystify/src/mystify.bas)
* [PLAY "mystify.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/mystify/src/mystify.bas)
### File(s)
* [mystify.bas](src/mystify.bas)

View file

@ -14,6 +14,14 @@
Snake clone by Microsoft.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "nibbles.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/nibbles/src/nibbles.bas)
* [RUN "nibbles.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/nibbles/src/nibbles.bas)
* [PLAY "nibbles.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/nibbles/src/nibbles.bas)
### File(s)
* [nibbles.bas](src/nibbles.bas)

View file

@ -14,6 +14,14 @@
' Created by QB64 community member bplus.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "particlefountain.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/particle-fountain/src/particlefountain.bas)
* [RUN "particlefountain.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/particle-fountain/src/particlefountain.bas)
* [PLAY "particlefountain.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/particle-fountain/src/particlefountain.bas)
### File(s)
* [particlefountain.bas](src/particlefountain.bas)

View file

@ -16,6 +16,14 @@
'------------------------------------------------------------------------
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "pattern.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/pattern/src/pattern.bas)
* [RUN "pattern.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/pattern/src/pattern.bas)
* [PLAY "pattern.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/pattern/src/pattern.bas)
### File(s)
* [pattern.bas](src/pattern.bas)

View file

@ -16,6 +16,14 @@
'///Compile and see the speed. Didn't optimize it as much as I want though...
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "npplasma.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/plasma-non-pal/src/npplasma.bas)
* [RUN "npplasma.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/plasma-non-pal/src/npplasma.bas)
* [PLAY "npplasma.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/plasma-non-pal/src/npplasma.bas)
### File(s)
* [npplasma.bas](src/npplasma.bas)

View file

@ -19,6 +19,14 @@
'*****************************************************************************
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "qbascii.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/qbascii/src/qbascii.bas)
* [RUN "qbascii.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/qbascii/src/qbascii.bas)
* [PLAY "qbascii.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/qbascii/src/qbascii.bas)
### File(s)
* [qbascii.bas](src/qbascii.bas)

View file

@ -14,6 +14,14 @@
Tetris clone by Microsoft.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "qblocks.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/qblocks/src/qblocks.bas)
* [RUN "qblocks.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/qblocks/src/qblocks.bas)
* [PLAY "qblocks.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/qblocks/src/qblocks.bas)
### File(s)
* [qblocks.bas](src/qblocks.bas)

View file

@ -14,6 +14,14 @@
Breakout clone by Microsoft.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "qbricks.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/qbricks/src/qbricks.bas)
* [RUN "qbricks.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/qbricks/src/qbricks.bas)
* [PLAY "qbricks.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/qbricks/src/qbricks.bas)
### File(s)
* [qbricks.bas](src/qbricks.bas)

View file

@ -14,6 +14,14 @@
Maze puzzle game by Microsoft.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "qmaze.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/qmaze/src/qmaze.bas)
* [RUN "qmaze.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/qmaze/src/qmaze.bas)
* [PLAY "qmaze.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/qmaze/src/qmaze.bas)
### File(s)
* [qmaze.bas](src/qmaze.bas)

View file

@ -14,6 +14,14 @@
Turn-based artillery game by Microsoft.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "qships.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/qships/src/qships.bas)
* [RUN "qships.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/qships/src/qships.bas)
* [PLAY "qships.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/qships/src/qships.bas)
### File(s)
* [qships.bas](src/qships.bas)

View file

@ -14,6 +14,14 @@
Space station defense game by Microsoft.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "qspace.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/qspace/src/qspace.bas)
* [RUN "qspace.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/qspace/src/qspace.bas)
* [PLAY "qspace.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/qspace/src/qspace.bas)
### File(s)
* [qspace.bas](src/qspace.bas)

View file

@ -14,6 +14,14 @@
Star Trek-like game by Philipp Strathausen.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "qtrek.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/qtrek/src/qtrek.bas)
* [RUN "qtrek.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/qtrek/src/qtrek.bas)
* [PLAY "qtrek.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/qtrek/src/qtrek.bas)
### File(s)
* [qtrek.bas](src/qtrek.bas)

View file

@ -30,6 +30,14 @@
' make it a game???
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "rc-ent6.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/raycaster/src/rc-ent6.bas)
* [RUN "rc-ent6.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/raycaster/src/rc-ent6.bas)
* [PLAY "rc-ent6.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/raycaster/src/rc-ent6.bas)
### File(s)
* [rc-ent6.bas](src/rc-ent6.bas)

View file

@ -14,6 +14,14 @@
Reversi game by Microsoft.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "reversi.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/reversi/src/reversi.bas)
* [RUN "reversi.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/reversi/src/reversi.bas)
* [PLAY "reversi.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/reversi/src/reversi.bas)
### File(s)
* [reversi.bas](src/reversi.bas)

View file

@ -16,6 +16,14 @@
'------------------------------------------------------------------------
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "rotozoom.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/rotozoomer/src/rotozoom.bas)
* [RUN "rotozoom.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/rotozoomer/src/rotozoom.bas)
* [PLAY "rotozoom.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/rotozoomer/src/rotozoom.bas)
### File(s)
* [rotozoom.bas](src/rotozoom.bas)

View file

@ -10,6 +10,14 @@
Sine Wave Explorer
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "sinewave.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/sine-wave-explorer/src/sinewave.bas)
* [RUN "sinewave.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/sine-wave-explorer/src/sinewave.bas)
* [PLAY "sinewave.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/sine-wave-explorer/src/sinewave.bas)
### File(s)
* [sinewave.bas](src/sinewave.bas)

View file

@ -15,6 +15,14 @@
'public domain
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "sinecube.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/sinecube/src/sinecube.bas)
* [RUN "sinecube.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/sinecube/src/sinecube.bas)
* [PLAY "sinecube.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/sinecube/src/sinecube.bas)
### File(s)
* [sinecube.bas](src/sinecube.bas)

View file

@ -28,6 +28,14 @@
' elements to be sorted and how "scrambled" they are to begin with.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "sortdemo.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/sort-demo/src/sortdemo.bas)
* [RUN "sortdemo.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/sort-demo/src/sortdemo.bas)
* [PLAY "sortdemo.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/sort-demo/src/sortdemo.bas)
### File(s)
* [sortdemo.bas](src/sortdemo.bas)

View file

@ -14,6 +14,14 @@
' QB64 game by Cyperium.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "space64.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/space64/src/space64.bas)
* [RUN "space64.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/space64/src/space64.bas)
* [PLAY "space64.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/space64/src/space64.bas)
### File(s)
* [space64.bas](src/space64.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "splines.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/splines/src/splines.bas)
* [RUN "splines.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/splines/src/splines.bas)
* [PLAY "splines.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/splines/src/splines.bas)
### File(s)
* [splines.bas](src/splines.bas)

View file

@ -16,6 +16,14 @@
'JKC 2003
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "starfild.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/starfield-torus/src/starfild.bas)
* [RUN "starfild.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/starfield-torus/src/starfild.bas)
* [PLAY "starfild.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/starfield-torus/src/starfild.bas)
### File(s)
* [starfild.bas](src/starfild.bas)

View file

@ -16,6 +16,14 @@
'------------------------------------------------------------------------
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "strfld.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/starfield/src/strfld.bas)
* [RUN "strfld.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/starfield/src/strfld.bas)
* [PLAY "strfld.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/starfield/src/strfld.bas)
### File(s)
* [strfld.bas](src/strfld.bas)

View file

@ -14,6 +14,14 @@
Pure QB Realtime Raytracer Demo. Translated to/optimized for QB by Antoni Gual agual@eic.ictnet.es. The original was written in C by Texel, a Spanish demo coder [...]
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "raytra1b.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/texel-raytracer/src/raytra1b.bas)
* [RUN "raytra1b.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/texel-raytracer/src/raytra1b.bas)
* [PLAY "raytra1b.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/texel-raytracer/src/raytra1b.bas)
### File(s)
* [raytra1b.bas](src/raytra1b.bas)

View file

@ -14,6 +14,14 @@
Tic tac toe game by Paul Meyer.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "tictac.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/tic-tac-toe/src/tictac.bas)
* [RUN "tictac.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/tic-tac-toe/src/tictac.bas)
* [PLAY "tictac.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/tic-tac-toe/src/tictac.bas)
### File(s)
* [tictac.bas](src/tictac.bas)

View file

@ -19,6 +19,14 @@
' initial mode.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "torus.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/torus-demo/src/torus.bas)
* [RUN "torus.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/torus-demo/src/torus.bas)
* [PLAY "torus.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/torus-demo/src/torus.bas)
### File(s)
* [torus.bas](src/torus.bas)

View file

@ -12,6 +12,14 @@ Print "of three pegs and a number of discs which can slide onto any peg."
Print "The puzzle starts with the discs stacked in order of size on one peg."
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "tower.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/tower-of-hanoi/src/tower.bas)
* [RUN "tower.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/tower-of-hanoi/src/tower.bas)
* [PLAY "tower.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/tower-of-hanoi/src/tower.bas)
### File(s)
* [tower.bas](src/tower.bas)

View file

@ -14,6 +14,14 @@
Basic "turtle graphics" setup. Draws a Koch snowflake by default.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "turtle.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/turtle-graphics/src/turtle.bas)
* [RUN "turtle.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/turtle-graphics/src/turtle.bas)
* [PLAY "turtle.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/turtle-graphics/src/turtle.bas)
### File(s)
* [turtle.bas](src/turtle.bas)

View file

@ -16,6 +16,14 @@
'------------------------------------------------------------------------
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "twirl2.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/twirl/src/twirl2.bas)
* [RUN "twirl2.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/twirl/src/twirl2.bas)
* [PLAY "twirl2.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/twirl/src/twirl2.bas)
### File(s)
* [twirl2.bas](src/twirl2.bas)

View file

@ -16,6 +16,14 @@
'------------------------------------------------------------------------
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "vortex.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/vortex/src/vortex.bas)
* [RUN "vortex.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/vortex/src/vortex.bas)
* [PLAY "vortex.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/vortex/src/vortex.bas)
### File(s)
* [vortex.bas](src/vortex.bas)

View file

@ -10,6 +10,14 @@
Water wave demonstration.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "water.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/water/src/water.bas)
* [RUN "water.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/water/src/water.bas)
* [PLAY "water.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/water/src/water.bas)
### File(s)
* [water.bas](src/water.bas)

View file

@ -38,6 +38,14 @@ To install one of it (on a Windows system), simply rename the created .exe file
Sorry, I've no idea how to do it on MacOS or Linux, any info about it from people who using these systems would be nice.
```
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
* [LOAD "worms.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?src=https://qb64.com/samples/worms/src/worms.bas)
* [RUN "worms.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=auto&src=https://qb64.com/samples/worms/src/worms.bas)
* [PLAY "worms.bas"](https://v6p9d9t4.ssl.hwcdn.net/html/5953810/index.html?mode=play&src=https://qb64.com/samples/worms/src/worms.bas)
### File(s)
* [worms.bas](src/worms.bas)