内容简介:AThe library focuses on being lightweight and minimal; pull requests will likely not be merged. Bug reports and questions are welcome.This library is free software; you can redistribute it and/or modify it under the terms of the MIT license. See
fe
A tiny , embeddable language implemented in ANSI C
(= reverse (fn (lst)
(let res nil)
(while lst
(= res (cons (car lst) res))
(= lst (cdr lst))
)
res
))
(= animals '("cat" "dog" "fox"))
(print (reverse animals)) ; => ("fox" "dog" "cat")
Overview
- Supports numbers, symbols, strings, pairs, lambdas, macros
- Lexically scoped variables, closures
- Small memory usage within a fixed-sized memory region — no mallocs
- Simple mark and sweep garbage collector
- Easy to use C API
- Portable ANSI C — works on 32 and 64bit
- Concise — less than 800 sloc
Contributing
The library focuses on being lightweight and minimal; pull requests will likely not be merged. Bug reports and questions are welcome.
License
This library is free software; you can redistribute it and/or modify it under the terms of the MIT license. See LICENSE for details.
以上所述就是小编给大家介绍的《Fe: A tiny, embeddable language implemented in ANSI C》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Web前端开发最佳实践
党建 / 机械工业出版社 / 2015-1 / 59.00元
本书贴近Web前端标准来介绍前端开发相关最佳实践,目的在于让前端开发工程师提高编写代码的质量,重视代码的可维护性和执行性能,让初级工程师从入门开始就养成一个良好的编码习惯。本书总共分五个部分13章,第一部分包括第1章和第2章,介绍前端开发的基本范畴和现状,并综合介绍前端开发的一些最佳实践;第二部分为第3-5章,讲解HTML相关的最佳实践,并简单介绍HTML5中新标签的使用;第三部分为第6-8章,介......一起来看看 《Web前端开发最佳实践》 这本书的介绍吧!