Skip to content

Instantly share code, notes, and snippets.

View re-xyr's full-sized avatar
🍰

daylily re-xyr

🍰
  • Carnegie Mellon University
  • Gensokyo
  • 02:54 (UTC -04:00)
View GitHub Profile
@re-xyr
re-xyr / hsinit
Created April 26, 2022 06:02
Script for quickly pulling up a working Haskell environment on Gitpod
#! /bin/bash
install() {
local tool=$1
if [ -z $tool ]; then
tool=ghc
fi
local version=$2
if [ -z $version ]; then
version=recommended
fi