1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 15:44:57 +00:00

Meta: Add for-loop JavaScript test program

This commit is contained in:
Conrad Pankoff 2020-03-12 23:12:51 +11:00 committed by Andreas Kling
parent 097e1af4e8
commit 023d121e05

View file

@ -0,0 +1,5 @@
var x = 0;
for (var i = 0; i !== 3; i += 1) {
x += 2;
}
x;