Posts: 422
Threads: 27
Joined: Apr 2022
Reputation:
26
_Dest _Console doesn't work on my Pi, I am guessing that it silently launches a non-existing terminal with the result that nothing happens
the Pi's terminal is lxterminal, can one of the QB64pe developers point me to where in the source code I need to make the change?
Posts: 734
Threads: 30
Joined: Apr 2022
Reputation:
43
12-20-2023, 07:56 PM
(This post was last modified: 12-20-2023, 07:56 PM by SpriggsySpriggs.)
_Dest _Console just makes print and loc commands affect the console output, it doesn't call a console up. You should run the program on your Pi in a terminal window, I think. Using $CONSOLE on Windows would make one appear but I do not think that works on Linux.
Tread on those who tread on you
Posts: 422
Threads: 27
Joined: Apr 2022
Reputation:
26
I have $Console:Only before _Dest _Console
maybe one of the developers will chime in and clarify
Posts: 303
Threads: 10
Joined: Apr 2022
Reputation:
44
`$Console` and `_Dest _Console` just causes your program to write to standard-out and read from standard-in, it doesn't launch a terminal emulator. If you want to see the output of the process then you have to start a terminal and run the executable in it.
If you're running the program via the IDE and hitting F5, we don't launch your program inside of a terminal so you won't see the console output without running the executable yourself. Potentially we could give that as an option since it would be a bit handy, but currently it's not there.