ClojureDocs

Nav

Namespaces

*3

clojure.core

Available since 1.0 (source)
    bound in a repl thread to the third most recent value printed
    2 Examples
    user=> "Hello!"
    "Hello!"
    
    user=> "Hello World!"
    "Hello World!"
    
    user=> "Hi Everyone!"
    "Hi Everyone!"
    
    user=> [*1 *2 *3]
    ["Hi Everyone!" "Hello World!" "Hello!"]
    
    user=> (range 5)
    (0 1 2 3 4)
    user=> (last *1)
    4
    user=> (last *2)
    4
    user=> (last *3)
    4
    
    See Also

    bound in a repl thread to the most recent value printed

    Added by hoornet

    bound in a repl thread to the second most recent value printed

    Added by hoornet
    0 Notes
    No notes for *3