RosettaCodeData/Task/Terminal-control-Clear-the-screen/FreeBASIC/terminal-control-clear-the-screen.freebasic
2016-12-05 23:44:36 +01: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