home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacGofer 0.22d / MacGofer Sources / apr2.gs < prev    next >
Encoding:
Text File  |  1994-01-06  |  171 b   |  7 lines  |  [TEXT/MPS ]

  1. main     = appendChan stdout (answer 10) exit done
  2.  
  3. answer n = foldr (++) "\n" (map (pad 5 . show) [ x * x | x<-[1..10] ])
  4.  
  5. pad n s  = iterate (' ':) s !! (n - length s)
  6.  
  7.