tracks/haskell/exercises/forth/src/Forth.hs in trackler-2.0.8.18 vs tracks/haskell/exercises/forth/src/Forth.hs in trackler-2.0.8.19

- old
+ new

@@ -21,9 +21,9 @@ empty :: ForthState empty = error "You need to implement this function." evalText :: Text -> ForthState -> Either ForthError ForthState -evalText = error "You need to implement this function." +evalText text stack = error "You need to implement this function." toList :: ForthState -> [Int] -toList = error "You need to implement this function." +toList stack = error "You need to implement this function."