Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/tests/nofib/real/anna/reverse.cor

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



list a ::= Nil | Cons a (list a); ;;

dot f g x = f (g x);

lid4 l = case l of Nil -> l; Cons x xs -> l end;

lid6 l = case l of Nil -> l; Cons x xs -> Cons (lid4 x) xs end;

wiggle = dot lid4 lid4;

wigglewiggle = dot lid6 lid6;

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.