Created
March 20, 2015 14:26
-
-
Save egoist/c512cbe037ef73cfb90c to your computer and use it in GitHub Desktop.
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
| #lang racket | |
| (define (我是 x n) | |
| (cond | |
| [(zero? n) '()] | |
| [else | |
| (cons x (我是 x (- n 1)))])) | |
| (define 猪头 .) | |
| (define 三 3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment