From 918af522d638c8bd18fdcc3a5fc41bb5122c9e68 Mon Sep 17 00:00:00 2001 From: Sebastian Steger Date: Fri, 7 Nov 2025 16:27:41 +0100 Subject: [PATCH] fix value --- haskell/01-expressions/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell/01-expressions/README.md b/haskell/01-expressions/README.md index 2608428..d995c24 100644 --- a/haskell/01-expressions/README.md +++ b/haskell/01-expressions/README.md @@ -7,7 +7,7 @@ The following illustrates some haskell basics. It can be reproduced using `ghci` Expression | Type (:t) | Value | Comment --- | --- | --- | -------- `2` | `Num a => a` | `2` | -`2.03` | `Fractional a => a` | `2.3` | +`2.03` | `Fractional a => a` | `2.03` | `'c'` | `Char` | `'c'` `"hallo"` | `String` | `"hallo"` | `True` | `Bool` | `True` |