---
title: Story of my life
---
```Javascript=
let name = "Andi"
let money = 10000000;
let isHappy = true;
// Andi is a girl who got lucky and won a 10,000,000 lottery
//She got to travel around and try new things a lot
getTime();//8am
//Andi gets up at 8 and enjoy her day
//Having French bakery
name = "connoisseur Andi";
let frenchBreakfast = {
lowSugar: true,
painAuChocolat: 5,
croissants: 5,
chaussonsAuxPommes: 5,
hotChocolate: 1,
plate:["empty","empty"]
}
//Andi finishes 2 plates of food
function takePictures(){
takeOutCamera();
setMode();
adjustFocus();
pressShutter()
}
function eatBreakfast{
drinkHotChocolate();
eatCroissants();
takePictures();
}
money = money - 100;//9,999,900
isHappy = True;
function connoisseurAndi(time){
if (time>8 && time<=10)
identityConnoisseur= true;
}
else{
identityConnoisseurAndi = false;
}
let numVisited = 0;
let montreal = {
new: false,
newExibition: "none",
interestLevel = 0,
}
function visitPlaces(montreal){
//Andi is traveling in Montreal
//she only goes go places she hasn't been to
//she skips the others
numVisited++;
}
function travelNew(){
if placeVisited === true;
//then skip this place
}
else {
visitNew();
}
checkVisitPlaces(montreal);//first check
checkVisitPlaces(montreal);//Double check
//new art exhibition coming up
montreal.new = true;
montreal.interestLevel = 50;
montreal.newExhibition = "art";
//Andi goes to the new exibition
//Buys souvenirs
money = momey - 200;//9,999,700
isHappy = true;
checkVisitPlaces(montreal);//new place to go
getTime();//1pm
//snack time for Andi
name = "Snack Andi";
function snackTime{
orderBrasillé();
tryPaletsDeDames();
takePictures();
}
getTime();4pm
//afternoon tea time for Andi
name = "Afternoon tea Andi"
let afternoonTea = ["Chaussons aux pommes","Pissaladière","Vol-au-vent"]
function sleep{
if tired === true;
//Andi goes to bed
}
else{
travelaround();
}
//Montreal never sleeps
//Andi wants to travel all day and all night
```