Skip to content

Commit

Permalink
Update 3.2.4 Daily Activities.js
Browse files Browse the repository at this point in the history
fixed some things
  • Loading branch information
aditeyapatakoti authored Nov 8, 2023
1 parent e904eba commit 7ae5519
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions 3.2.4 Daily Activities.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
function start(){
var partOfDay = "morning";
var time = 8;
println("In the " + partOfDay + " I wake up at " + time)
partOfDay = "afternoon"
time = '12'
println('In the ' + partOfDay + ' I eat lunch at ' + time)
partOfDay = "evening";
time = "11";
println('In the ' + partOfDay + ' I go to bed at ' + time)
var partOfDay = "morning";
var time = 8;
println("In the " + partOfDay + " I wake up at " + time);
partOfDay = "afternoon";
time = '12';
println('In the ' + partOfDay + ' I eat lunch at ' + time);
partOfDay = "evening";
time = "11";
println('In the ' + partOfDay + ' I go to bed at ' + time);
}

0 comments on commit 7ae5519

Please sign in to comment.