Files
METH_Transcendence/site/node_modules/stats/test/fixtures/switch.js
Kum1ta 57c261c689 Site
- starting pong game 3d
2024-07-30 01:08:32 +02:00

9 lines
117 B
JavaScript

switch ('foo') {
case 'foo':
console.log('foo');
break;
case 'bar':
console.log('bar');
break;
}