tangled
alpha
login
or
join now
jcs.org
/
serenity
0
fork
atom
Serenity Operating System
0
fork
atom
overview
issues
pulls
pipelines
serenity
/
Libraries
/
LibJS
/
Tests
/
switch-basic-3.js
at
hosted
6 lines
71 B
view raw
wrap content
Andreas Kling
LibJS: Implement basic execution of "switch" statements
6y ago
2285f845
1
var
a
=
"foo"
;
2
3
switch
(
100
)
{
4
default
:
5
console
.
log
(
"PASS"
)
;
6
}