Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 499 Bytes

STAR3.md

File metadata and controls

55 lines (39 loc) · 499 Bytes
name see also
cljs.core/*3
cljs.core/*1
cljs.core/*2
cljs.core/*e

Summary

Holds the result of the third to last REPL expression.

Details

Examples

(+ 1 2 3 4)
;;=> 10

(+ 4 8)
;;=> 12

(+ 1 2)
;;=> 3

*3
;;=> 10

(inc *3)
;;=> 11

Note that a standalone evaluation of *1, *2, *3, or *e is not a part of remembered history:

:first
;;=> :first

:second
;;=> :second

:third
;;=> :third

*3
;;=> :first

*2
;;=> :second

*1
;;=> :third