This file contains 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
#include <memory> | |
#include <iostream> | |
// TODO compare w/ operator::new | |
namespace plan { | |
template <typename A, typename B> | |
struct Apply { | |
using Target = typename A::Target; |
This file contains 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
{-# OPTIONS_GHC -Wno-name-shadowing #-} | |
{-# LANGUAGE DeriveFunctor #-} | |
{-# LANGUAGE DeriveTraversable #-} | |
{-# LANGUAGE Rank2Types #-} | |
{-# LANGUAGE ViewPatterns #-} | |
{-# LANGUAGE ExistentialQuantification #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
-- | All about traversing 'Tree's | |
module Tree where | |
import Control.Applicative (liftA2) |
This file contains 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
module Holes where | |
import Control.Applicative | |
newtype Holes t a = Holes { runHoles :: t (a, a -> Holes t a) } | |
evalHoles :: Functor t => Holes t a -> t a | |
evalHoles = fmap fst . runHoles | |
holes :: Traversable t => t a -> Holes t a | |
holes ta = Holes $ traverse ctx ta `runKA` Holes |
This file contains 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 ViewPatterns #-} | |
{-# LANGUAGE RecordWildCards #-} | |
module Main where | |
import qualified Prelude | |
import Prelude hiding (words) | |
import Data.Char (isSpace, isSymbol) | |
import Data.Foldable (asum) | |
import Data.Maybe (fromMaybe) | |
import Options.Applicative | |
import Data.Semigroup ((<>)) |
This file contains 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
{- | |
--- Day 18: Duet --- | |
You discover a tablet containing some strange assembly code labeled simply | |
"Duet". Rather than bother the sound card with it, you decide to run the code | |
yourself. Unfortunately, you don't see any documentation, so you're left to | |
figure out what the instructions mean on your own. | |
It seems like the assembly is meant to operate on a set of registers that are | |
each named with a single letter and that can each hold a single integer. You |
This file contains 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 LambdaCase #-} | |
module Main where | |
{- | |
--- Day 11: Hex Ed --- | |
Crossing the bridge, you've barely reached the other side of the stream when a | |
program comes up to you, clearly in distress. "It's my child process," she says, | |
"he's gotten lost in an infinite grid!" | |
Fortunately for her, you have plenty of experience with infinite grids. |
This file contains 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
{-# OPTIONS_GHC -Wno-name-shadowing #-} | |
{-# LANGUAGE RecordWildCards #-} | |
{-# LANGUAGE LambdaCase #-} | |
module Main where | |
import qualified Data.Map.Strict as M | |
import qualified Data.List as L | |
import Data.Maybe (fromMaybe) | |
{- | |
--- Day 8: I Heard You Like Registers --- |
This file contains 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
{-# OPTIONS_GHC -Wall -Werror -Wextra #-} | |
{-# LANGUAGE RankNTypes #-} | |
{-# LANGUAGE RecordWildCards #-} | |
{-# LANGUAGE TypeOperators #-} | |
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE PolyKinds #-} | |
{-# LANGUAGE KindSignatures #-} | |
{-# LANGUAGE GADTs #-} | |
{-# LANGUAGE TypeFamilies #-} | |
{-# LANGUAGE TypeFamilyDependencies #-} |
This file contains 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
print "ab" |
This file contains 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 KindSignatures #-} | |
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE PatternSynonyms #-} | |
{-# LANGUAGE ViewPatterns #-} | |
module Fin where | |
data Nat = Z | S Nat | |
newtype Fin (n :: Nat) = Fin { unFin :: Int } |