Skip to content

Instantly share code, notes, and snippets.

@soegaard
Created June 27, 2013 21:20
Show Gist options
  • Save soegaard/5880512 to your computer and use it in GitHub Desktop.
Save soegaard/5880512 to your computer and use it in GitHub Desktop.
#lang racket
(module constants racket
(provide e pi)
(define e 2.1718281828)
(define pi (* 355/113 1.0)))
(require 'constants)
pi
; (set! pi (+ pi 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment