Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. dim as double tim = timer
  2. dim as double testdouble
  3. dim as single testsingle
  4. for i as ulong = 0 to 100000000
  5.     testdouble += 0.123
  6. next
  7. print "Double: "&timer-tim
  8. tim = timer
  9. for i as ulong = 0 to 100000000
  10.     testsingle += 0.123
  11. next
  12. print "Single: "&timer-tim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement