This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/examplefiles/nodejsrepl/nodejsrepl_test.nodejsrepl
Christopher Trudeau fbdcfa8066 Changes from code review:
- renamed nodecon to nodejsrepl
    - removed bad mimetypes
2021-06-21 16:25:58 -04:00

20 lines
210 B
Text

// Node.js REPL Session
> let a = 3
undefined
> a
3
> let b = '4'
undefined
> b
'4'
> b == a
false
> b === a
false
> if(a) {
... console.log(a)
... }
3
undefined
> c
Uncaught ReferenceError: c is not defined