Right now I am using LinuxMint-17 64-bit, Euphoria v4.1.0, and the default MATE Terminal 1.8.0.
include std/console.e
sequence o, n
clear_screen()
o = ""
n = video_config()
while 1 do
if not equal(o,n) then
position(1,1)
puts(1, " ")
position (1,1)
? n
o = n
end if
n = video_config()
end while
The code above does not work.
Is it a bug? I have no idea.