depot
this commit
canon
subtree-staging
monorepo for the virus lounge
The Virus Lounge
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
users
/
tazjin
/
rlox
/
examples
/
var.lox
blob: 7af90b3f0beecfc056950b3787b998bd962863b9 (
plain
) (
blame
)
1
2
3
4
5
6
7
8
var a = 10;
var b = 5;
{
var b = 10;
var c = 2;
a * b * c;
}