Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions reference.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ An expression is anything that results in a value. Almost everything in Pharen i
{% highlight clojure %}
; A basic function call: my-function is passed a string and a variable
(my-function "argument 1" argument-2)
; An even more basic function call: you don't have to pass my-function any parameters
(my-function)
; Expressions can be used anywhere that atomic values can be used.
(my-function (another-function "argument 1") argument-2)
{% endhighlight %}
Expand Down