cradle
cradle copied to clipboard
Let's Build a Compiler (in Haskell)
Results
3
cradle issues
Sort by
recently updated
recently updated
newest added
function created to compute expression : ` expression (x:y:z:[]) = (term x) ++ (addOperation y) ++ (term z)` shows a type error ``` • Couldn't match expected type ‘[Char]’ with...
In the "Single Digit Math" Chapter: 1. Section "A Single Digit" (first code snippet): `module Data.Char` should be replaced with `import Data.Char`. 2. Section "Adding Types": The data type has...