Skip to content

Instantly share code, notes, and snippets.

@cosmez
Forked from soegaard/constansts.rkt
Created June 27, 2013 23:01
Show Gist options
  • Save cosmez/5881165 to your computer and use it in GitHub Desktop.
Save cosmez/5881165 to your computer and use it in GitHub Desktop.
Hack to declare constants
#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