Scheme Racket Lisp
I’m really going to put scheme and common lisp in the same category?
Implementations
- Racket
- Chez
- Guile
- Gambit
-
Chicken
- SBCL
Gambit vs Chez vs Guile scheme. Me dunno Gerbil is a system on top of Gambit approximately similar to racket
(print "hello world")
(print "~a foo" 'bar)
#lang racket
(print "hello world")
Scheme
Pre-Scheme: A Scheme Dialect for Systems Programming
Minikanren
https://github.com/michaelballantyne/faster-minikanren
raco pkg install minikanren
#lang racket
(require minikanren)
(run 1 (q) (fresh (x y z) (== x q) (== 3 y)))
http://io.livecode.ch/ more minikanren examples [implementing microkanren (https://www.youtube.com/watch?v=0FwIwewHC3o)
http://tca.github.io/veneer/examples/editor.html minikanren examples.
https://www.philipzucker.com/aop-minikanren/
lambda kanren assume all A New Higher-order Unification Algorithm for 𝜆Kanren
Racket
https://docs.racket-lang.org/index.html
raco pkg install
Creating Languages in Racket (2011)
https://school.racket-lang.org/2019/plan/
https://github.com/wilbowma/cur a curious dependently typed proof assistant
Mythical Macros tutorial https://soegaard.github.io/mythical-macros/
Macros and Languages in Racket book draft http://rmculpepper.github.io/malr/ 1
Racket Guide: Creating Languages https://docs.racket-lang.org/guide/languages.html
Racket Docs search for all languages: https://docs.racket-lang.org/search/index.html?q=H%3A
Extensible Pattern Matching in an Extensible Language
Bowman how to hashlang Macro-embedding Compiler Intermediate Languages in Racket
FRTime
implementing type systems as a macros Type Systems as macros
Rhombus: A New Spin on Macros without All the Parentheses
Rosette
https://docs.racket-lang.org/rosette-guide/index.html
Rosette - should be a confluence of my interests. I feel like I want some kind of macro engine for smtlib. Perhaps it makes intermiedtae queries, perhaps not. stage0 would be “just” a macro expander for smtlib.
#lang rosette
(define-symbolic b boolean?)
(assert #t)
(assume b)
(verify b)
;(define-symbolic b boolean?)
Common Lisp
Lisp-2 - seperate namespace for functions and vasriables -Common lisp Condition system lisp class system CLOS
https://letoverlambda.com/index.cl/guest/chap2.html let over lambda. Let in common lisp makes a ref cell?
SLIME
getting started sbcl manual quick lisp library manager This makes it easy to load up packages. I think using this is quite strandard. Follow instructions to curl and load and add to init file
Practical Common Lisp Common Lisp the Language 2nd ed
echo $'
;re
(write-line "Hello, World!")
(ql:quickload "vecto")
(format t "Hello, world!")
; comment one
#|
Multiline comment are nestable
|#
(defun fib (n)
"return fib nuymber"
(if (< n 2)
1
(+ (fib (- n 1)) (fib (- n 2)))
)
)
(fib 3)
(funcall #\'fib 3) ; funcall takes multiarity args. Functions quoting
(apply #\'fib (list 3)) ; apply takes list of args
#\'fib
; multiple value returns
(defun many (n)
(values n (* n 2) (* n 3)))
(let ((str "Hello, world!")) ; let and let*
(string-upcase str))
; defparameter and defvar
(defparameter *string* "I\'m global")
(defun print-variable ()
(print *string*))
(print-variable)
(defun foobar (a b c) (+ a (* b c)))
(compiled-function-p #\'foobar)
(disassemble #\'foobar)
(format t "~a" t)
(vector 1 2 3)
#(1 2 3)
' | sbcl
(declaim (optimize (debug 3)))
https://malisper.me/category/debugging-common-lisp/
save-lisp-and-die to save an image of current process.
CLOS
art of metaobject protocol
https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node260.html
Condition System
Like exceptions except you can restrta from them book
ACL2
The main theorem prover associated with common lisp. It is a granddaddy of a lot of other systems https://github.com/acl2/acl2
Other Lisps
- Carp https://news.ycombinator.com/item?id=28875051
- Janet
- Shen https://shenlanguage.org/
- Clojure
- emacs lisp
Compilation
http://home.pipeline.com/~hbaker1/CheneyMTA.html
Lisp in easy pieces
http://cs.brown.edu/~sk/Publications/Books/ProgLangs/2007-04-26/
Gambit compiling to javascript
You need to compile the javascript runtime special
make _gambit.js # This command finally build the needed Gambit Javascript runtime
LD_LIBRARY_PATH=..: ../gsc/gsc -:~~bin=../bin,~~lib=../lib,~~include=../include -f -target js -prelude "(define-cond-expand-feature|enable-type-checking|)(define-cond-expand-feature|disable-auto-forcing|)(define-cond-expand-feature|enable-sharp-dot|)(define-cond-expand-feature|enable-bignum|)(define-cond-expand-feature|enable-ratnum|)(define-cond-expand-feature|enable-cpxnum|)(define-cond-expand-feature|disable-smp|)(##include\"../lib/header.scm\")" -o _gambit.js ../lib/_univlib.scm
cp _gambit.js /c/tools/gambit-c/lib/_gambit.js # This command publish the Javascript runtime to the installed Gambit-C.
Hmm. make_gambit does this stuff? https://gitter.im/gambit/gambit?at=5bc7fb95435c2a518ec448d1
This final concatenation step is bizarre. Hmm wasn’t necessayr on minimal example in gitter above
% cat test.scm
(println "hello!")
% gsc/gsc -:=. -target js -exe test.scm
% ./test
hello!
contrib/try repl gambit in the browwser experiment using emscripten. Different from try.scheme.org using universal backend
Misc
tinylisp 99 lines of C. pretty cool https://news.ycombinator.com/item?id=32100035 - interrsting comment about generic multiple dispatch. Is there a subsumption indexing issue here?
https://github.com/nojb/ocs-ng ocaml scheme
Papers on writing virtual machines for scheme? 3 implementation models
State of Scheme to Javascript The Ribbit pathway seems interesting. Or maybe rather the Gambit pathway scheme interp in browser
“Let’s Build a Hygienic Macro Expander” by Matthew Flatt Macro scope. So de bruijn indices are a way of dealing with some of the troubles of binding forms. But here I think he’s saying that de bruijn indices are the wrong abstraction.
Scope sets Syntax objects are paired with scope sets. type syntax = Sexp.t * Int.Set.t
syntax_of_datum : Sexp.t -> syntax =
HUh that was an interesting trick. Use ref () and physical equality for gensym. Binding as Sets of Scopes Notes on a new model of macro expansion for Racket
https://github.com/jcubic/lips lips - a scheme in javascript
https://ianthehenry.com/posts/janet-game/the-problem-with-macros/ interesting blog post cross stage persistence. How does one serialize a function? http://www.nhplace.com/kent/Papers/Technical-Issues.html why a lisp 2 i guess
https://turtleware.eu/ common lisp essay
https://www.cs.utah.edu/plt/publications/macromod.pdf composable and compileable macros - you want in whe?
Oleg of course. http://okmij.org/ftp/Scheme/
- Has an implementation of shift reset delimitted contianutations
Macro examples:
- Making a pattern matcher might be kind of interesting exercise.
- making your own short circuiting “or” or other non call by value constructs. In some sense this is defining a new interpreter back into scheme?
- making your own binding forms or introducing variables into the environment
https://www.cs.utexas.edu/ftp/garbage/cs345/schintro-v14/schintro_toc.html - an intorudcition to scheme and it’s impllementation
https://ds26gte.github.io/tyscheme/index-Z-H-1.html teach yourself scheme in fixnum days
In particular the extneded examples section is kind of interesting https://www.scheme.com/tspl4/examples.html#./examples:h0
The scheme objects technique. Let bindings are mutable. Isn’t that nuts. Let’s you do all kinds of shenanigans that you could do in ocaml with refs, but would be unlikely to.
let make_counter () = let state = mk_ref 0 in fun () -> let state := !state + 1 in !state
amb is genuinely surprising. It isn’t even that it’s a macro. Its callcc that makes it possible call/cc for break statements.
continuations https://www.ps.uni-saarland.de/~duchier/python/continuations.html call/cc let’s you pretend you were writing in CPS the whole time.
- call/cc for break statements
- call/cc for coroutines
- search
- amb
https://felleisen.org/matthias/7480-s21/lectures.html history of PL. interesting discussion of hygienic macros at the least https://www.sweetjs.org/ - hygienic macros
macros
What is the deal.
https://github.com/namin/inc incremental compilter construction
Hmm a scheme in the broser biwacheme chicken -> C -> wasm gambit has a backend racket has ab ackend https://www.reddit.com/r/scheme/comments/fhvuwl/the_best_uptodate_and_mature_schemejavascript/
Like livecode.io right clojurescript. But that’s clojure
https://github.com/webyrd/faster-miniKanren https://github.com/jasonhemann/microKanren/blob/master/microKanren.scm
<script src="https://www.biwascheme.org/release/biwascheme-0.7.1-min.js">
(console-log "Hello, world!")
</script>
<div id="bs-console">
</div>
<script type="text/biwascheme">
(print "Hello, world!")
(print (current-date))
(console-log "ok.")
(load "/assets/microkanren.scm")
(print (call/goal (call/fresh (lambda (q) (== q 1) ))))
(print (call/run (lambda (q)
(call/fresh (lambda (r)
(conj (== q `(,r ,r)) (== r 1) ))))))
(define-macro (fizz x)
`(buzz ,x))
(print (macroexpand '(fizz 3)))
(print (macroexpand '(Zzz f)))
(print (macroexpand '(conj+ x y z)))
(print (macroexpand '(fresh (x y) g1 g2)))
(print (macroexpand '( conde ((x y) (p q)) )))
(print (run 1 (q) (== q 1)) )
(print (run 2 (q)
(conde
((== q 1))
((== q 2)))))
(print (run 2 (x)
(fresh (p q)
(== x `(,p ,q))
(conde
((== q 1) (== p q))
((== q 2))))))
(print (run 2 (q p)
(conde
((== q 1) (== p q))
((== q 2)))))
(print (macroexpand '(run 2 (q p)
goal)))
( print (macroexpand-1 '(conde
((== q 1) (== p q))
((== q 2)))))
</script>