QB64 Phoenix Edition
Fireworks! - Printable Version

+- QB64 Phoenix Edition (https://staging.qb64phoenix.com)
+-- Forum: QB64 Rising (https://staging.qb64phoenix.com/forumdisplay.php?fid=1)
+--- Forum: Code and Stuff (https://staging.qb64phoenix.com/forumdisplay.php?fid=3)
+---- Forum: Programs (https://staging.qb64phoenix.com/forumdisplay.php?fid=7)
+---- Thread: Fireworks! (/showthread.php?tid=1812)

Pages: 1 2


RE: Fireworks! - TerryRitchie - 07-04-2023

Welcome!

Nicely done! I love the thorough commenting in your code. Nice.


RE: Fireworks! - GareBear - 07-04-2023

Dustinian, welcome to the forum and I like Firework.bas well done.


RE: Fireworks! - PhilOfPerth - 07-05-2023

Very realistic! Good job.


RE: Fireworks! - justsomeguy - 07-05-2023

Great Job! You code is clean and easy to read. I really need to get better at doing this kind of code. Smile

One tip. In QB64 you don't have to use the call command.

Code: (Select All)
' Instead of doing this
call foo(x, y)
' You can do this, just remove the parenthesis
foo x, y

I wrote a lot of code with the CALL command before realizing I didn't need it.