/* ** TinyExam.ox ** ** Purpose: ** Provide a tiny example for using GnuDraw ** ** Date: ** 9/5/2001 ** ** Author: ** Charles Bos */ #include // Include the Ox standard library header #include main() { decl mY; mY= rann(1, 10); Draw(0, mY); SaveDrawWindow("graphs/tinyexam.png"); ShowDrawWindow(); }