Skip to content

Instantly share code, notes, and snippets.

View NalaGinrut's full-sized avatar

NalaGinrut

View GitHub Profile
@NalaGinrut
NalaGinrut / 0_reuse_code.js
Created July 3, 2014 03:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@NalaGinrut
NalaGinrut / srfi-28-compiler.scm
Created July 24, 2012 03:03 — forked from ijp/srfi-28-compiler.scm
turn format strings into a procedure
#!r6rs
;; a toy for turning srfi 28 format strings into a procedure, that
;; performs the format, and outputs to stdout
(library (toys srfi-28-compiler)
(export format-string->procedure)
(import (rnrs)
(only (srfi :1 lists) fold)
(srfi :8 receive))
(define (escape-char? char)