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
;; P. Ragde -- Proust, a Nano Proof Assistant (2016) | |
#lang racket | |
(struct Lam (var body)) ; lambda expression | |
(struct App (func arg)) ; application | |
(struct Arrow (domain codomain)) ; function | |
(struct TA (type var)) ; type annotation | |
;; expr = (lambda x => expr) |
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
(setq user-full-name "Adrian Manea") | |
(setq user-mail-address "[email protected]") | |
(require 'package) | |
(add-to-list 'package-archives '("melpa" . "https://melpa.milkbox.net/packages/")) | |
(package-initialize) | |
(server-start) ;; for emacsclient = $EDITOR = ec in terminal | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; ===GLOBAL & INTERFACE TWEAKS | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |