#i made a script that doesnt work
24 messages · Page 1 of 1 (latest)
This looks so ai generated
** You are now Level 30! **
100% ChatGpt
GGs
Might wanna look into the logic of the ‘time since last increment’ variable logic. It doesnt seem to add up.
Try not to make it such a specific position since programs often get maths wrong:
print(1 + 2)
print(3)
;compile
Program Output
3
3
mrjamp | 63ms | python | Python 3.12 | godbolt.org
Okay thats not right
u did it wrong
print(string.format("%0.30f", 1 + 2))
;compile
Program Output
3.000000000000000000000000000000
sown | lua | lua-5.4.3 | wandbox.org
oh okay
Ty
Usually its unprecise
Video Link: https://youtu.be/2gIxbTn7GSc
Background Music:
a night full of you by ikkun (ex. Barradeen) | https://soundcloud.com/ikkunwastaken
Music promoted by https://www.free-stock-music.com
Creative Commons Attribution-ShareAlike 3.0 Unported
https://creativecommons.org/licenses/by-sa/3.0/deed.en_US
print(0.1 + 0.2)
;compile
Program Output
0.30000000000000004
mrjamp | 86ms | python | Python 3.12 | godbolt.org
Exactly
0.1 + 0.2 due to floating point math
not 1 + 2