9xc Examples - Owen2k6/GoOS GitHub Wiki
import Console
Print >> "Hello, 9xCode b3.1"
import System
import Time
Int H = Hours
Print >> "Hour: ", H
Delay >> 1000
Stop
import *
Window Main = GetWindow >> "Demo", 320, 180
DrawLine >> Main, 10, 10, 310, 10, Red
String s = "Hi!"
DrawString >> Main, s, 12, 30, Yellow
SetWindowPos >> Main, 60, 60
import IO, Console
String msg = ReadLine
WrFile >> "0:\\out.txt", msg
Print >> "Saved."