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 RankNTypes #-} | |
{-# LANGUAGE BlockArguments #-} | |
{-# LANGUAGE GADTs #-} | |
{-# LANGUAGE MultiParamTypeClasses #-} | |
{-# LANGUAGE OverloadedLabels #-} | |
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE PolyKinds #-} | |
{-# LANGUAGE FunctionalDependencies #-} | |
{-# LANGUAGE AllowAmbiguousTypes #-} | |
{-# LANGUAGE TypeApplications #-} |
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 Huggable where | |
swap :: (a, b) -> (b, a) | |
swap (a, b) = (b, a) | |
newtype Star f a b = Star { runStar :: a -> f b } | |
newtype Forget r a b = Forget { runForget :: a -> r } | |
class Profunctor p where | |
dimap :: (a -> b) -> (c -> d) -> p b c -> p a d |
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 RankNTypes | |
, BlockArguments | |
, GADTs | |
, MultiParamTypeClasses | |
, OverloadedLabels | |
, DataKinds | |
, PolyKinds | |
, FunctionalDependencies | |
, AllowAmbiguousTypes | |
, TypeApplications |
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 <stdio.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include <gc.h> | |
typedef enum { | |
APP, | |
CON, | |
COMB, | |
} tag_t; |
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 📕 where | |
open import Agda.Primitive | |
renaming (Set to 💯; lsuc to 👆; lzero to 🔴; Level to 🏢) | |
data _🤝_ {🤣 : 🏢} {🇦 : 💯 🤣} (🇽 : 🇦) : 🇦 → 💯 🤣 where | |
✅ : 🇽 🤝 🇽 | |
infix 4 _🤝_ |
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 RankNTypes, BlockArguments #-} | |
module Lens | |
( Lens | |
, MonoLens | |
, view | |
, (...) | |
, over | |
, set | |
, lens |
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
use std::convert::TryInto; | |
use std::io::{BufRead, Read, Write}; | |
use std::process::exit; | |
const IMAGE_SIZE: usize = 242000; | |
const NUM_DEVICES: usize = 2; | |
const TIB: usize = 1471; | |
type Cell = i32; |
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 Glue | |
import StdEnv | |
:: Name :== String | |
:: Term | |
= Loc Name | |
| Top Name | |
| App Term Term |
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 <stdio.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include <gc.h> | |
typedef enum { | |
APP, | |
CON, | |
COMB, | |
} tag_t; |
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
(* based on https://gist.github.com/AndrasKovacs/a0e0938113b193d6b9c1c0620d853784 *) | |
type name = string | |
datatype term | |
= Loc of name | |
| Top of name | |
| App of term * term | |
| Let of name * term * term | |
| Lam of name * term |
NewerOlder