Chinaunix首页 | 论坛 | 博客
  • 博客访问: 248419
  • 博文数量: 49
  • 博客积分: 110
  • 博客等级: 民兵
  • 技术积分: 510
  • 用 户 组: 普通用户
  • 注册时间: 2013-01-13 00:59
个人简介

make it run,make it better,make it fast. https://github.com/liulanghaitun

文章分类

全部博文(49)

文章存档

2023年(1)

2022年(2)

2020年(4)

2019年(4)

2017年(15)

2016年(3)

2014年(3)

2013年(14)

发布时间:2020-09-15 08:42:53

(define lot  (lambda(ls)    (not (null? ls))))(define member&  (lambda (elem ls cont)    (cond      ((null? ls) (cont '()))      ((eq? elem (car ls)) (member& elem (cdr ls) (lambda (res) (cont (cons elem res)))))     .........【阅读全文】

阅读(1019) | 评论(0) | 转发(0)

发布时间:2017-10-22 00:42:51

1)编译平台:gentoo $uname -a Linux gentoo 4.12.12-gentoo #2 SMP Thu Sep 14 21:32:14 CST 2017 x86_64 Intel(R) Core(TM) i7-3720QM CPU @ 2.60GHz GenuineIntel GNU/Linux2)编译软件:chez scheme$scheme -v 或者使用(petite -v)Chez Scheme Version 9.4Copyright 1984-2016 Cisco Systems, Inc.3)编.........【阅读全文】

阅读(914) | 评论(0) | 转发(0)

发布时间:2016-12-27 20:59:37

                                    第二章1.判断列表中是否每个S表达式都是原子(define debug      (.........【阅读全文】

阅读(1245) | 评论(0) | 转发(0)

发布时间:2016-12-26 21:38:13

                                     第一章 1)基本概念1.1)S表达式: scheme中所有元素都可以叫做S表达式1.2)atom: 原子,.........【阅读全文】

阅读(1141) | 评论(0) | 转发(0)

发布时间:2013-03-21 01:09:14

Y组合子......【阅读全文】

阅读(1481) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册