Skip to content

Commit 204650c

Browse files
Rename pasts and create new programs.
1 parent 42080d9 commit 204650c

14 files changed

+20
-0
lines changed

programs/air.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
var isWeekday = "false";
2+
var acOn = !true;
3+
console.log("Weekday");
4+
console.log(isWeekday);
5+
console.log("Air conditioning");
6+
console.log(acOn);

programs/lacalization.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
var country = "USA";
2+
var state = "Flórida";
3+
var city = "Miami";
4+
console.log(city, state, country);

programs/light.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
var isDay = true;
2+
var lightsOn = !isDay;
3+
console.log("Daytime?");
4+
console.log(isDay);
5+
console.log("Lights on?");
6+
console.log(lightsOn);

programs/person_game.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
var name = "Mario";
2+
var job = "Plumber";
3+
console.log(name);
4+
console.log(job);
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)