Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/tests/conformance98/fullylazy/lazy.hs

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


import System

main =  do
  ~[arg] <- getArgs
  mapM print (func (read arg))
  return ()

func n = map (func' n) [1..10]
func' x y = nfib x

nfib 0 = 1
nfib 1 = 1
nfib x = nfib (x-1) + nfib (x-2)


Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.