forked from LeenkxTeam/Kmake
16 lines
134 B
Plaintext
16 lines
134 B
Plaintext
|
|
> >
|
||
|
|
console.log("foo")
|
||
|
|
foo
|
||
|
|
undefined
|
||
|
|
> 1 + 2
|
||
|
|
3
|
||
|
|
> "str"
|
||
|
|
'str'
|
||
|
|
> console.dir({ a: 1 })
|
||
|
|
{ a: 1 }
|
||
|
|
undefined
|
||
|
|
> { a: 1 }
|
||
|
|
{ a: 1 }
|
||
|
|
>
|
||
|
|
> .exit
|