Haskell For Dilettantes, Part 9

preview_player
Показать описание
We finish Homework 3, which gives us a completely playable Sokoban game including a start screen and win screen. I make many goofy mistakes along the way.

Join this channel to get access to perks; the "Thanks, peterb!" tier is a great way to show your support without breaking the bank, and the "Early Access" tier gets you access to most of my videos about a week early.

Рекомендации по теме
Комментарии
Автор

In Haskell all functions are implicitly curried. This means that the following to type signatures are the same:

```
moveFromTo :: Coord -> Coord -> Coord -> Coord
moveFromTo :: Coord -> Coord -> (Coord -> Coord)
```

ICopiedJohnOswald