(define pi 3.14159)
(define radius 10)
(* pi (* radius radius))
(define circumference (* 2 pi radius))
circumference
(define pi 100000)
pi
circumference
(define (square x) (* x x))
(define (sum-of-squares x y) (+ (square x) (square y)))
相关文章
- PHP操作mongoDB 笔记
- [C#7] 1.Tuples(元组)
- BootStap学习笔记(1)
- libeXosip2(1-2) -- How-To initiate, modify or terminate calls.
- 并发编程 - 协程 - 1.协程概念/2.greenlet模块/3.gevent模块/4.gevent实现并发的套接字通信
- zabbix电话告警V1
- hadoop学习笔记:运行wordcount对文件字符串进行统计案例
- ERROR in static/js/0.5d7325513eec31f1e291.js from UglifyJs
- C语言学习笔记--函数
- C语言学习笔记--函数与指针