Skip to content

Instantly share code, notes, and snippets.

@egoist
Created March 20, 2015 14:26
Show Gist options
  • Select an option

  • Save egoist/c512cbe037ef73cfb90c to your computer and use it in GitHub Desktop.

Select an option

Save egoist/c512cbe037ef73cfb90c to your computer and use it in GitHub Desktop.
#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