https://github.com/Helium4Haskell/lvm
Raw File
Tip revision: a516e95b66e989f1364567e9b4f3292266659d08 authored by Hage, J. (J) on 24 August 2019, 08:00:47 UTC
Getting rid of pesky compile time warnings
Tip revision: a516e95
Ski.core
----------------------------------------------------------------
-- Daan Leijen (c) 2001
--
-- $Revision$
-- $Author$
-- $Date$
----------------------------------------------------------------
module Ski where

import LvmLang

s  f g x   = f x (g x)
k  x y     = x
i  x       = x

map f xs
 = case xs of
    [] -> []
    (:) x xx -> (:) (f x) (map f xx)
back to top