X11 sample rewritten; now it works again
[k8lst.git] / modules / pkgext.st
blob1faff24f97324c194ae972284bc5e0709c1af792
2  coded by Ketmar // Vampire Avalon (psyc://ketmar.no-ip.org/~Ketmar)
3  Understanding is not required. Only obedience.
5  This program is free software. It comes without any warranty, to
6  the extent permitted by applicable law. You can redistribute it
7  and/or modify it under the terms of the Do What The Fuck You Want
8  To Public License, Version 2, as published by Sam Hocevar. See
9  http://sam.zoy.org/wtfpl/COPYING for more details.
11 Package extend [
12 ^showAll [
13   packages keysDo: [:k | k asString printNl ]
16 showClasses [
17   'Package: ' print. self name printNl.
18   classes keysDo: [:k | ' ' print. k asString printNl ]