From 9477dbe667f250ecd23f8fc0d56b942191526421 Mon Sep 17 00:00:00 2001 From: Franciszek Malinka Date: Thu, 25 Feb 2021 14:42:55 +0100 Subject: Stare semestry, niepoukladane --- Semestr 3/anm/l10.hs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Semestr 3/anm/l10.hs (limited to 'Semestr 3/anm/l10.hs') diff --git a/Semestr 3/anm/l10.hs b/Semestr 3/anm/l10.hs new file mode 100644 index 0000000..dfccaf4 --- /dev/null +++ b/Semestr 3/anm/l10.hs @@ -0,0 +1,16 @@ +-- Zadanie 1 + +int :: (String -> a) -> String -> Integer -> a +int f s n = f (s ++ show n) + +str :: (String -> a) -> String -> String -> a +str f s1 s2 = f (s1 ++ s2) + +lit :: String -> (String -> a) -> String -> a +lit s f s2 = f (s2 ++ s) + +(^^) :: (b -> c) -> (a -> b) -> a -> c +(^^) = (.) + +sprintf :: ((String -> a) -> String -> String) -> String +sprintf f = f id "" \ No newline at end of file -- cgit v1.2.3