Download or view unicodeGraphics.frink in plain text format
// Very simple program to draw and print all Unicode characters, without
// skipping those that are undefined or missing glyphs.
g = new graphics
g.font["Arial Unicode MS", 1]
w = 200
for u = 0 to 65535
   g.text[char[u], u mod w, u div w]
g.show[]
g.print[]
Download or view unicodeGraphics.frink in plain text format
   This is a program written in the programming language Frink.
   For more information, view the Frink
    Documentation or see More Sample Frink Programs.
  
Alan Eliasen, eliasen@mindspring.com