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
| module Main where | |
| import Prelude | |
| import Matryoshka | |
| import Effect (Effect) | |
| import Effect.Console (logShow) | |
| import Data.Functor.Mu (Mu(..)) | |
| data ListF a n = NilF | ConsF a n |
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
| module Infer | |
| data Foo : (xs : List (String, Type)) -> Type where | |
| MkFoo : Foo xs | |
| mkFoo : {xs : List (String, Type)} -> Foo xs | |
| mkFoo = MkFoo | |
| foo : ? -- Foo ?xs | |
| foo = mkFoo {xs = [("Foo", Int), ("Bar", Nat)]} |
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
| module Main where | |
| import Prelude | |
| import Data.Array | |
| import Debug | |
| import Type.Prelude | |
| import Type.Row | |
| import Type.RowList | |
| import Unsafe.Coerce | |
| import Partial.Unsafe |
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
| class RacketChez < Formula | |
| desc "Implementation of the Chez Scheme language" | |
| homepage "https://cisco.github.io/ChezScheme/" | |
| url "https://github.com/racket/ChezScheme", :using => :git, :tag => "racket-v8.6" | |
| sha256 "a344c46c9b40d8f4695bdbe82b7802da05ffe7ad2c8ffc16747dd84f02c38964" | |
| license "Apache-2.0" | |
| depends_on "ncurses" | |
| def install |
OlderNewer