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
import Unification.Companion.convertibleTo | |
import Unification.Companion.unify | |
import org.junit.jupiter.api.Test | |
// Refs | |
sealed interface Def | |
class Local(val name: String) : Def { | |
override fun toString(): String = name | |
} | |
class Meta(val name: String, var solution: Term? = null) : Def { |
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
[buildPlans.IosevkaMoe] | |
family = "Iosevka Moe" | |
spacing = "normal" | |
serifs = "sans" | |
noCvSs = true | |
exportGlyphNames = false | |
[buildPlans.IosevkaMoe.variants.design] | |
two = "straight-neck-serifless" | |
four = "closed-serifless" |
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
#! /bin/bash | |
install() { | |
local tool=$1 | |
if [ -z $tool ]; then | |
tool=ghc | |
fi | |
local version=$2 | |
if [ -z $version ]; then | |
version=recommended | |
fi |
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 Flip where | |
open import Function using (_∘_) | |
open import Relation.Binary.PropositionalEquality using (_≡_; refl) | |
-- truth values | |
data Truth : Set where | |
⊤ : Truth | |
⊥ : Truth |
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
[Trigger] | |
Operation = Install | |
Operation = Upgrade | |
Operation = Remove | |
Type = Package | |
Target = * | |
[Action] | |
Description = Detecting orphaned packages... | |
When = PostTransaction |