-
It would be nice to have some simple examples that illustrate the source syntax.
-
_Original author: slightly...@chromium.org (July 31, 2012 11:27:44)_
Now that we've got a single-file build (https://code.google.com/p/traceur-compiler/source/browse/#git%2Fbin), Traceur should be us…
-
```
(set! x.1 1)
```
and
```
(set! (.-1 x) 1)
```
both produce `x.1 = 1`, when we really want `x[1] = 1`. The closest I could get was by doing
```
(set! (:1 x) 1)
```
which produces
```
(x || 0)…
int3 updated
11 years ago
-
I'm not sure when exactly this would matter, but since @rkh brought it up on Twitter...
```
$ rvm use rbx-head
Using /Users/steve/.rvm/gems/rbx-head
steve at wireless-140 in ~/src/rails on master
$ …
-
Chicken and egg here, if one does not have ruby they need to install ruby to install ruby.
-
You knew this was coming. Don't deny it.
``` scheme
pyscheme > (define fact
> (lambda (n)
> (if (= n 0)
> 1
> (* n (fact (- n 1))))))
fact
py…