We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fn
(fn [x] (* x x)
def
defn
(defn pow [x] (* x x)
let
(let [a 1 b 2] (+ a b))
cond
(cond (< n 0) "negative" (> n 0) "positive" "zero"))
apply
map
reduce
throw
try
catch
finally
load
as
(as @java.lang.Float 20)
20 as java.lang.Float
The text was updated successfully, but these errors were encountered:
No branches or pull requests
fn
- e.g.(fn [x] (* x x)
def
defn
- e.g.(defn pow [x] (* x x)
let
- e.g.(let [a 1 b 2] (+ a b))
>> 3cond
(switch alternative) - e.g.(cond (< n 0) "negative" (> n 0) "positive" "zero"))
,apply
map
,reduce
...throw
,try
-catch
-finally
load
- evaluates script and returns last value or nilas
- e.g.(as @java.lang.Float 20)
(in Groovy:20 as java.lang.Float
)The text was updated successfully, but these errors were encountered: