RosettaCodeData/Task/Terminal-control-Clear-the-screen/FreeBASIC/terminal-control-clear-the-screen.basic
2023-07-01 13:44:08 -04:00

8 lines
237 B
Text

' FB 1.05.0 Win64
' FreeBASIC has a built in Cls command which clears the console on Windows
' but it may still be possible to scroll the console to view its
' previous contents. The following command prevents this.
Shell("Cls")
Sleep