This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang racket/gui | |
#| | |
TODO: | |
1. Allow random numbers over any integer range (as opposed to the contract attached to random. | |
2. Possibly refactor everything into the guess-frame%. | |
|# | |
(define min-value (make-parameter 1)) | |
(define max-value (make-parameter 100)) |