index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Base
/
home
/
anon
/
js
/
simple-variables.js
blob: dfecdab09c36e05a71660f692e9597b93e60cbf4 (
plain
)
1
2
3
4
5
6
7
c = 1; function foo() { var a = 5; var b = 7; return a + b + c; } foo();