1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/_DELAY.md
2022-12-24 21:14:48 -06:00

446 B

The _DELAY statement suspends program execution for the specified number of seconds.

Syntax

_DELAY seconds!

Parameter(s)

  • seconds! is the time to wait, accurate to nearest millisecond (.001).

Description

  • While waiting, CPU cycles are relinquished to other applications.
  • Delays are not affected by midnight timer corrections.

See Also