[ prog / sol / mona ]

prog


Marvin Minsky - The Beauty of the Lisp Language

140 2020-10-10 23:13

var state=3;
function openFuture(state) {
window.eval(`console.log(${state})`)
} openFuture(121)
Result: 121

function openFuture(state) {
window.eval("console.log(state)")
} openFuture(121)
Result: 3

301


VIP:

do not edit these