-
At the moment, Kitten's support for locals require special support from the compiler, REPL, etc.. I recently developed a different approach to locals in context of my language, Awelon, in support of e…
-
Including high-pass and low-pass filters
-
This may be a great use:
* [Music and Technology: Algorithmic and Generative Music](https://ocw.mit.edu/courses/music-and-theater-arts/21m-380-music-and-technology-algorithmic-and-generative-music-…
-
Seems like ``sequence?`` which has this definition:
```factor
[
dup tag 1 swap fixnum-shift-fast 2564 fixnum-bitand 0 eq?
[ f ] [ \ t ] if
[ drop \ t ] [
dup dup tag 7 eq?
…
-
-
本来打算早点做出一个在线的 demo, 但难度我还没能招架
两个编辑的包大概写好了:
http://jiyinyiyong.github.com/cirru-editor/page/
http://jiyinyiyong.github.com/codearea/demo.html
介绍页面需要明天努力下, 我对介绍有雏形了. 但标题描述的 Shell 不清晰
首先对于 Bash 的烦恼, 我想用…
tiye updated
12 years ago
-
Class继承和Prototypal继承的不同?
class Inheritance:class是一个蓝图---将要创建对象的描述。class从class里继承,并创建子类关系:结构化的类分类。
javascript的class inheritance 使用prototype chain来把 Child(Constructor.prototype)链接到Parent(Constructor…
-
**Description**
Hash slice value modifications with transformative assignment operators (`+=, -=, *=, /=, `) only modify the value of the last sliced key.
Concatenative and logic assignment (`.=, …
-
Define the format for tiles. Think about what constraints and behaviours might exist on tiles.
* Blocking sight
* Blocking movement
* Slowing movement
* Animated
* Affecting pushed objects (lav…
-
Implement either CSP or FRP as a first class citizen. FRP is going to be simpler at a language level, but stack/stream could provide a bit clashy. Alternatively CSP could be implemented with some new …