// Instruction Example : long screen.width.get ()
screen
.resolution
.set
(
512
,
384
)
text
.display
(
"Press a key to exit."
,
CENTER
,
350
)
text
.display
(
"The resolution of the Alambik screen is : "
+
str
(
screen
.width
.get
(
)
)
+
" x "
+
str
(
screen
.height
.get
(
)
)
,
CENTER
,
CENTER
)
keyboard
.wait
(
)
script
.stop
(
)