10-22-2022, 05:17 PM
Amazing what can be done with QB64
I was reading the code and trying to see what the least understandable portion is (to me), and I believe this is it:
I looked up mid$ on the wiki and it's about selecting part of a string. That makes this even more interesting...
Anyway thanks for sharing this. Great work.
I was reading the code and trying to see what the least understandable portion is (to me), and I believe this is it:
Code: (Select All)
side(t2) = Val(Mid$("024623673175105445670123", 1 + t * 4 + t2, 1))
I looked up mid$ on the wiki and it's about selecting part of a string. That makes this even more interesting...
Anyway thanks for sharing this. Great work.