/** This makes a "contact sheet" showing all of the jpg or png images in the current folder. */ use glob.frink use GraphicsGrid.frink gg = new GraphicsGrid for f = lexicalSort[filesGlob["*.{jpg,png}"]] { i = new image[f] g = new graphics g.add[i] g.caption[f.getName[]] gg.add[g] } gg.layout[].show[]