9xc Examples - Owen2k6/GoOS GitHub Wiki

Examples

1) Hello, 9xCode

import Console
Print >> "Hello, 9xCode b3.1"

2) Timed message

import System
import Time
Int H = Hours
Print >> "Hour: ", H
Delay >> 1000
Stop

3) Window & drawing

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

4) File output

import IO, Console
String msg = ReadLine
WrFile >> "0:\\out.txt", msg
Print >> "Saved."
⚠️ **GitHub.com Fallback** ⚠️