Im total noob with PB. I installed it like 2 hours ago and have readed parts of that pretty excellent online documentation you have.
I tested console.pb. It worked fine, except i didnt notice any effect by ConsoleTitle() or ClearConsole().
So i made this small thing, wich im goin to grow well-knwon "guess the number" game.
Code: Select all
Title$ = "Guess the number!"
OpenConsole()
ConsoleTitle (Title$)
ClearConsole()
Delay (4000)
CloseConsole()
End
It just hangs on until Delay is done. No Title or console cleared.lurah@PenguinLurah:~/Desktop/PureBASIC$ pbcompiler -e guess guessnumber.pb
******************************************
PureBasic Linux x86 v3.92 (Demo)
******************************************
Loading external modules...
Starting compilation...
9 lines processed.
Creating the executable.
- Feel the ..PuRe.. Power -
lurah@PenguinLurah:~/Desktop/PureBASIC$ ls
console.pb guess guessnumber.pb
lurah@PenguinLurah:~/Desktop/PureBASIC$ ./guess
lurah@PenguinLurah:~/Desktop/PureBASIC$
Is it me or this demo im using?

(i bet it's me lol)
I tested console.pb example from documentions. It works fine, except ClearConsole() and ConsoleTitle() are totally useless ones.
I have Ubuntu dapper.