Last active
June 30, 2024 14:21
-
-
Save trikitrok/73d8dddbf2d1c179612b to your computer and use it in GitHub Desktop.
Quacking in Racket
This file contains hidden or 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
(define (just-quacking) | |
(printf "Quack!\n")) | |
(define (squeaking) | |
(printf "Squeak!\n")) | |
(define (mute-quacking) | |
(printf "<< Silence >>\n")) | |
(define (quack how-to-quack) | |
(how-to-quack)) | |
(quack just-quacking) | |
(quack squeaking) | |
(quack mute-quacking) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment