Removed all code that uses OpenGL from Image.
[io/quag.git] / addons / Rational / samples / Sample.io
blob856659f043df592677e45eed963b59c685a7d618
1 #!/usr/bin/env io
3 /* Example usages of Rational Numbers */
5 r1 := Rational with(1, 2) /* 1/2 */
6 r1 + r1 == Rational with(1, 1) /* true */
7 Rational with(1, 1) == Rational with(4, 4) /* true */
9 r2 := Rational with(1, 4)
10 r1 + r2 == 0.75 asRational