Scheme: History Started as an experiment in programming language design by challenging some fundamental design assumptions A dialect of the LISP Programming Language invented by Guy Lewis Steele Jr. and Gerald Jay Sussman Scheme: History Emerged from MIT in the mid-1970's Originally ...
需要中文版《The Scheme Programming Language》的朋友可以在此留言(内附一小段译文) 首先给出原著的链接:http://www.scheme.com/tspl4/。 我正在持续翻译这本书,大概每天都会翻译两小时。若我个人拿不准的地方,我会附上原文,防止误导;还有些不适合翻译的术语,我会特意不翻译。 想看翻译的人,可以在下面留言。
算不上汉化,就是机翻,大概意思能看懂就够了,总比看英文一知半解好多了, 自己留着看的,搜遍全网没发现中文版的,于是就自己动手机翻一个中文版的, 无法当文章欣赏, 也就是用作工具书查手册, 地址; 机翻The Scheme Pr…
MIT Press 的《程序设计语言》(The Scheme Programming Language)是由 Lisle 编写的一本经典的计算机科学教材,于2003年出版。这本书是 Scheme 语言的官方教科书,也是计算机科学领域的重要参考书籍之一。 《程序设计语言》的主要内容包括: 1. 编程语言概述:介绍了计算机程序的基本概念、编程语言的发展历史以及编程语言的...
Scheme is a general-purpose programming language, descended from Algol and Lisp, widely used in computing education and research and a broad range of industrial applications. This thoroughly updated edition of The Scheme Programming Language provides an introduction to Scheme and a definitive reference ...
x 最后x是{3 . 3},没有变成{4 . 4} 这说明是修改了指针指向的内存地址里存储的真实的值。
The Scheme Programming Language R Kent Dybvig 计算机 R. Kent Dybvig著 京东价 ¥降价通知 累计评价 0 促销 展开促销 配送至 --请选择-- 支持 更多商品信息 中华商务进口图书旗舰店 店铺星级 商品评价4.7 高 物流履约4.3 中 售后服务4.7 高 进店逛逛关注店铺 ...
The Scheme Programming Language, 4th Edition 电子书 读后感 评分☆☆☆ 刚开始读,读起来感觉比第三版更流畅,一些地方写得也更透彻。 作者在也开放了这本书http://www.scheme.com/tspl4/ 敬佩。 评分☆☆☆ 刚开始读,读起来感觉比第三版更流畅,一些地方写得也更透彻。 作者在也开放了这本书http://ww...
开始学习大名鼎鼎的continuation,脑袋转起来吧. continuation is just a procedure that accepts one single variable. call/cc catch the current continuation---current continuation means what the system are going to do with the result of (call/cc expression) In example...