其他分享
首页 > 其他分享> > Coursera Programming Languages, Part B 华盛顿大学 Week 1

Coursera Programming Languages, Part B 华盛顿大学 Week 1

作者:互联网

来上 programming language 的第二 part 了!这一部分介绍的语言是 Racket,之前就听说过它独特的括号语法,这次来具体了解一下

Racket definitions, functions and conditionals

(define x 3)
(define y (+ x 3))    ; 在 racket 中,+ 是一个函数,后面接着函数的两个参数
(define cube1
  lambda (x) (* x x x))   ; lambda 关键字类似于 ML 中的 fn, 创建一个匿名函数,格式为 lambda(args) (function body)
(define (cube2 x)
  (* x x x))              ; cube1 的 syntactic sugar 写法
(define (pow1 x y)
  (if (= y 0) 
      1
      (* x (pow1 x (- y 1)))))

Racket Lists

(list e1 e2 ... en)   ; build a list
null                  ; empty list
cons                  ; connect 2 lists
car                   ; get the head of a list
cdr                   ; get the tail of a list
null?                 ; check whether a list is empty

标签:Week,list,Coursera,Programming,Racket,define,e1,e2,lambda
来源: https://www.cnblogs.com/VeniVidiVici/p/16397637.html