首页 > AI前沿 > A Friendly Introduction to Racket

A Friendly Introduction to Racket

Hacker News 2026-08-22 22:08 1 阅读 查看原文
(list 1 2 3) ; => '(1 2 3) '(1 2 3) ; the same thing, "quoted" (first '(1 2 3)) ; => 1 (rest '(1 2 3)) ; => '(2 3) (cons 0 '(1 2 3)) ; => '(0 1 2 3) (length '(a b c)) ; => 3