Find it here: https://github.com/bitemyapp/learnhaskell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Style | |
on: | |
pull_request: | |
branches: [ "master" ] | |
push: | |
branches: [ "master" ] | |
tags: [ "*.*.*" ] | |
jobs: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# Language StrictData #-} | |
{-# Language GADTs #-} | |
{-# Language DeriveTraversable #-} | |
{-# Language LambdaCase #-} | |
module CEK where | |
import Control.Monad (ap) | |
import Data.Maybe | |
import Data.Void |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# language StrictData #-} | |
module CEK where | |
-- C -- Control | |
-- E -- Environment | |
-- (S) -- Store | |
-- K -- Continuation | |
data Exp | |
= Var String |