Skip to content

Instantly share code, notes, and snippets.

@myrkvi
Created March 6, 2014 18:30
Show Gist options
  • Save myrkvi/9396358 to your computer and use it in GitHub Desktop.
Save myrkvi/9396358 to your computer and use it in GitHub Desktop.
#lang racket
(define max (expt 100 100))
(define out (open-output-file "eee.txt"))
(define (f a b)
(if (> b max)
(f 0 1)
((write b out)
(newline out)
(f b (+ a b))
)))
(f 0 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment