0..." /> 0..." /> 0..." /> 0..." />
By using this site, you agree to our Privacy Policy and our Terms of Use. Close
bardicverse said:
Or in Dark Basic Pro

Print "Hello, world!"
END

Or, if you want to get advanced and add an IF THEN loop loop:

INT = 3
IF INT > 0
PRINT "Hello, World!"
INT--
ELSE
END

 

I optimized it for you :)

Zero is always in a memory register in the CPU, so it's faster to check a value against 0 then it is any other number (you never have to pass it in from memory). So if you can, always count down.