suggestions from @marcopolo
This commit is contained in:
parent
5bb828e37d
commit
aeb5497f61
90
README.md
90
README.md
@ -21,13 +21,7 @@ This is a number which evalutates to 5:
|
|||||||
5
|
5
|
||||||
```
|
```
|
||||||
|
|
||||||
This is a string, as it contains no whitespace:
|
This is a string, it can contain anything:
|
||||||
|
|
||||||
```
|
|
||||||
ImJustAString
|
|
||||||
```
|
|
||||||
|
|
||||||
This is also a string, it can contain anything:
|
|
||||||
|
|
||||||
```
|
```
|
||||||
"! I'm the king of the world !"
|
"! I'm the king of the world !"
|
||||||
@ -36,70 +30,86 @@ This is also a string, it can contain anything:
|
|||||||
This is a list. It evaluates to a linked-list of four strings:
|
This is a list. It evaluates to a linked-list of four strings:
|
||||||
|
|
||||||
```
|
```
|
||||||
(a b c d)
|
("a" "b" "c" "d")
|
||||||
```
|
```
|
||||||
|
|
||||||
This is a vector of those same elements. It's like a list, but has some slightly
|
This is a vector of those same elements. It's like a list, but has some slightly
|
||||||
different properties. We'll mostly be using lists:
|
different properties. We'll mostly be using lists:
|
||||||
|
|
||||||
```
|
```
|
||||||
[a b c d]
|
["a" "b" "c" "d"]
|
||||||
```
|
```
|
||||||
|
|
||||||
This is a string
|
This is a string
|
||||||
|
|
||||||
```
|
```
|
||||||
+
|
"+"
|
||||||
```
|
```
|
||||||
|
|
||||||
`:` is the evaluator. This evaluates to a function which adds its arguments:
|
`:` is the evaluator. A string beginning with `:` is evaluated to whatever it
|
||||||
|
references. This evaluates to a function which adds its arguments:
|
||||||
|
|
||||||
```
|
```
|
||||||
:+
|
":+"
|
||||||
```
|
```
|
||||||
|
|
||||||
This evaluates to list whose elements are a function and two numbers:
|
This evaluates to list whose elements are a function and two numbers:
|
||||||
|
|
||||||
```
|
```
|
||||||
(:+ 1 2)
|
(":+" 1 2)
|
||||||
```
|
```
|
||||||
|
|
||||||
This evaluates to the number 5:
|
A list prefixed with a `:` calls the first element as a function with the rest
|
||||||
|
of the elements as arguments. This evaluates to the number 5:
|
||||||
|
|
||||||
```
|
```
|
||||||
:(:+ 1 2)
|
:(":+" 1 2)
|
||||||
|
```
|
||||||
|
|
||||||
|
A bare string (lacking in `"`) is a shortcut for that string prefixed by a `:`.
|
||||||
|
This is equivalent to the above:
|
||||||
|
|
||||||
|
```
|
||||||
|
:(+ 1 2)
|
||||||
```
|
```
|
||||||
|
|
||||||
The `fn` function can be used to define a new function. This evaluates to an
|
The `fn` function can be used to define a new function. This evaluates to an
|
||||||
anonymous function which adds one to its argument and returns it:
|
anonymous function which adds one to its argument and returns it:
|
||||||
|
|
||||||
```
|
```
|
||||||
:(:fn [x]
|
:(fn [x]
|
||||||
:(:+ :x 1))
|
:(+ x 1))
|
||||||
```
|
```
|
||||||
|
|
||||||
The `def` function can be used to bind some value to a new variable:
|
The `def` function can be used to bind some value to a new variable. Note the
|
||||||
|
`.` instead of `:`. We'll cover that in a bit. This defines a variable `foo`
|
||||||
|
which evaluates to the string `"bar"`:
|
||||||
|
|
||||||
```
|
```
|
||||||
:(:def foo bar)
|
.(def foo "bar")
|
||||||
# Now :foo will evaluate to the string bar
|
```
|
||||||
|
|
||||||
:(:def incr
|
This defines a variable `incr` which evaluates to a function which adds one to
|
||||||
:(:fn [x]
|
its argument:
|
||||||
:(:+ :x 1)))
|
|
||||||
# Now :incr will evaulate to a function which adds 1 to its argument
|
|
||||||
|
|
||||||
#defn is a shortcut for the above
|
```
|
||||||
:(:defn incr [x]
|
.(def incr
|
||||||
:(:+ :x 1))
|
:(fn [x]
|
||||||
|
:(+ x 1)))
|
||||||
|
```
|
||||||
|
|
||||||
|
This uses `defn` as a shortcut for the above:
|
||||||
|
```
|
||||||
|
.(defn incr [x]
|
||||||
|
:(+ x 1))
|
||||||
```
|
```
|
||||||
|
|
||||||
There are also maps. A map's keys can be any value(?). A map's values can be any
|
There are also maps. A map's keys can be any value(?). A map's values can be any
|
||||||
value. This evaluates to a map with 2 key/val pairs:
|
value. This evaluates to a map with 2 key/val pairs:
|
||||||
|
|
||||||
```
|
```
|
||||||
{ foo :foo
|
{ "foo" foo
|
||||||
bar :(:incr 4) }
|
"bar" :(incr 4) }
|
||||||
```
|
```
|
||||||
|
|
||||||
`.` is the half-evaluator. It only works on lists, and runs the function given
|
`.` is the half-evaluator. It only works on lists, and runs the function given
|
||||||
@ -109,18 +119,18 @@ front). You can generate new code to run on the fly (macros) using the normal
|
|||||||
capitalized variable names in the body (utterly useless):
|
capitalized variable names in the body (utterly useless):
|
||||||
|
|
||||||
```
|
```
|
||||||
:(:defn caplet [mapping body...]
|
.(defn caplet [mapping body...]
|
||||||
# elem-map maps over every element in a list, embedded or otherwise
|
# elem-map maps over every element in a list, embedded or otherwise
|
||||||
::(:elem-map
|
::(elem-map
|
||||||
:(:fn [x]
|
:(fn [x]
|
||||||
:(:if (mapping :(:slice :x 1))
|
:(if (mapping :(slice x 1))
|
||||||
(capitalize :x)
|
(capitalize x)
|
||||||
:x))
|
x))
|
||||||
:body))
|
body))
|
||||||
|
|
||||||
#Usage
|
#Usage
|
||||||
.(:caplet [foo "this is foo"
|
.(caplet [foo "this is foo"
|
||||||
dog "this is dog"]
|
dog "this is dog"]
|
||||||
:(:println :Foo)
|
:(println Foo)
|
||||||
:(:println :Dog))
|
:(println Dog))
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user