{"words":[["0",""],["490",""],["980",""],["1470",""],["1960",""],["2450",""],["2940",""],["3430",""],["3920",""],["4410",""],["4900",""],["5390",""],["5890","DOUG LLOYD: As"],["6090","you"],["6170","start"],["6380","working"],["6620","with"],["6770","functions,"],["7035",""],["7300","another"],["7580","thing"],["7710","is"],["7780","going to"],["7860","become"],["8200","really"],["8500","important"],["9000","to"],["9200","understand,"],["9490",""],["9780","which"],["9940","is"],["10010","the"],["10100","concept"],["10500","of"],["10620","variable"],["11110","scope."],["11455",""],["11800",""],["12090",""],["12380","So"],["12550","scope"],["13020","is"],["13140","a"],["13200","characteristic"],["13530",""],["13860","of"],["13940","a"],["14000","variable"],["14490","that"],["14610","defines"],["15070","from"],["15490","which"],["15770","functions"],["16239","that"],["16490","variable"],["16910","can"],["17030","be"],["17210","accessed."],["17590",""],["17970",""],["18415",""],["18860","There"],["19000","are"],["19080","two"],["19430","primary"],["19685",""],["19940","scopes"],["20205",""],["20470","in"],["20610","C,"],["21000",""],["21295",""],["21590","local"],["22010","variables"],["22355",""],["22700",""],["23050","and"],["23210","global"],["23630","variables."],["23975",""],["24320",""],["24595","Now,"],["24870","local"],["25260","variables"],["25600","can"],["25800","only"],["26030","be"],["26210","accessed"],["26690","within"],["27020","the"],["27100","functions"],["27465",""],["27830","in"],["28030","which"],["28220","they're"],["28330","created."],["28705",""],["29080","They"],["29170","can't"],["29380","be"],["29510","accessed"],["29870","by"],["30080","every"],["30410","other"],["30600","function that"],["31000","exists"],["31390","in"],["31480","your"],["31600","program,"],["31885",""],["32170","only"],["32439","the"],["32549","function"],["32970","in"],["33150","which"],["33320","it"],["33380","was"],["33500","created."],["33980",""],["34395",""],["34810","Global"],["35090","variables, on the"],["35450","other"],["35640","hand,"],["35920","can"],["36020","be"],["36120","accessed"],["36350","by"],["36620","any"],["36880","function"],["37240","in"],["37280","the"],["37350","program."],["37750","And"],["37860","the"],["37960","reason"],["38210","for"],["38310","that"],["38550","is"],["38650","because"],["38890","they're"],["39000","not"],["39170","created"],["39450",""],["39730","inside"],["39995",""],["40260","of"],["40360","any"],["40550","particular"],["40920","function."],["41245",""],["41570","We"],["41730","declare"],["42060","them"],["42270","outside"],["42525",""],["42780","of"],["42860","all of"],["43130","the"],["43190","functions,"],["43660","which"],["43690","means"],["43860","that"],["44020","every"],["44280","function"],["44630",""],["44980","knows"],["45280","where"],["45490","it"],["45540","is"],["45880","and"],["46040","can"],["46200","access"],["46470",""],["46740","and"],["46860","manipulate"],["47330","it."],["47530",""],["48000",""],["48470",""],["48940","So"],["49170","far"],["49370","in"],["49470","the"],["49570","course"],["49800","you've"],["49930","pretty"],["50270","much"],["50480","been"],["50580","working"],["50900","exclusively"],["51270",""],["51640",""],["52010","with"],["52450","local"],["52850",""],["53250","variables."],["53590",""],["53930",""],["54280","Here's"],["54510","an"],["54550","example"],["54810",""],["55070","of"],["55420","a"],["55480","very,"],["55760",""],["56040","very"],["56330","simple"],["56650","main"],["56910","function"],["57360","and"],["57440","a"],["57490","very"],["57800","simple"],["58060",""],["58320","additional"],["58670","function"],["58990","that"],["59070","we've"],["59250","written."],["59590",""],["59953",""],["60316",""],["60680","In"],["60820","this"],["61010","case,"],["61265",""],["61520",""],["61750","x,"],["62120","which"],["62290","I've"],["62370","colored"],["62710","green"],["63080","just to"],["63280","highlight"],["63770",""],["64080","the"],["64375",""],["64670","locality"],["65140",""],["65610","or"],["65690","the"],["65750","scope"],["66160","of"],["66260","that"],["66450","variable,"],["66715",""],["66980",""],["67400","is"],["67610","local"],["67920","to"],["68000","the"],["68080","function"],["68460","triple."],["68870",""],["69240","main"],["69630","cannot"],["69930","refer"],["70330","to"],["70540","x"],["70835",""],["71130",""],["71490","at"],["71660","all."],["72020",""],["72300","It"],["72410","doesn't"],["72660","know"],["72820","what"],["72950","it"],["73050","is."],["73490",""],["73985",""],["74480","No"],["74670","other"],["74850","function,"],["75200","in"],["75270","fact,"],["75570","if we"],["75670","had"],["75840","additional"],["76180","functions"],["76580","in"],["76700","here,"],["77050","could"],["77260","refer"],["77600","to"],["77810","x."],["78105",""],["78400",""],["78880",""],["79360","Similarly,"],["79780","results"],["80055",""],["80330","which"],["80500","I've"],["80580","colored"],["80940","blue,"],["81380",""],["81660","is"],["81850","local"],["82280","only"],["82590","to"],["82770","main."],["83190",""],["83520","Only"],["83840","main"],["84230","knows"],["84440","what"],["84540","the"],["84620","variable"],["84930",""],["85240","result"],["85600",""],["85960",""],["86200","is."],["86460",""],["86720",""],["86980","triple"],["87235",""],["87490","cannot"],["87860","use"],["88050","it."],["88260",""],["88697",""],["89134",""],["89571",""],["90010","Now"],["90170","as"],["90270","I"],["90330","mentioned,"],["90790","global"],["91120","variables"],["91560","do"],["91780","exist."],["92180",""],["92580","If"],["92620","you"],["92710","declare"],["93060","that"],["93230","variable"],["93610","outside"],["93875",""],["94140","of"],["94390","any"],["94630","function,"],["94915",""],["95200",""],["95575","all"],["95950","of"],["96440","the"],["96510","functions"],["96910","in"],["96960","the"],["97040","program"],["97295",""],["97550","can"],["97810","refer"],["98060","to"],["98180","it."],["98290","So"],["98690",""],["99090","in"],["99220","this"],["99370","case"],["99550","I've"],["99630","highlighted"],["100040","in"],["100160","green"],["100650",""],["100920","a"],["101150",""],["101420","global"],["101835",""],["102250","variable"],["102660","declaration."],["102965",""],["103270",""],["103640",""],["104010","In"],["104110","this"],["104250","case,"],["104550","the"],["104650",""],["104750",""],["104850",""],["104950","variable"],["105120","being"],["105350","declared"],["105830","is"],["105960","called"],["106310","global,"],["106565",""],["106820","just"],["107120","to"],["107270","be"],["107350","extremely"],["107800","clear"],["108050","about"],["108240","it."],["108720","It"],["108840","is"],["108970","of"],["109050","type"],["109330","float."],["109720","And"],["109810","I"],["109900","assign"],["110200","it"],["110330","the"],["110520","value"],["110970","0.5050."],["111353",""],["111736",""],["112120",""],["112530",""],["112940","You'll"],["113060","notice"],["113350","that"],["113550","in"],["113750","main"],["114010",""],["114270","and"],["114540","in"],["114670","triple,"],["115160",""],["115430","I am"],["115710","able"],["115960","to"],["116200","refer"],["116575",""],["116950","to"],["117110","global."],["117365",""],["117620",""],["118080","And"],["118220","in"],["118310","fact,"],["118565",""],["118820","if"],["118930","I"],["119190",""],["119490","go"],["119670","through"],["119770","the"],["119870","program"],["120250","as"],["120400","indicated,"],["120720",""],["121040",""],["121315",""],["121590","main"],["121960","first"],["122330","calls"],["122650","triple,"],["123150",""],["123480","triple"],["123900","multiplies"],["124275",""],["124650","global"],["125010","by"],["125210","3,"],["125650","which"],["125830","sets"],["125950","its"],["126090","value"],["126400","to"],["126670","1.5-something,"],["127125",""],["127580",""],["128035",""],["128490",""],["128790",""],["129090",""],["129493",""],["129896",""],["130300",""],["130440","1.51"],["130820",""],["131200","or"],["131280","something"],["131460","like"],["131580","that,"],["131840",""],["132190",""],["132540",""],["132890","and"],["133060","then"],["133390",""],["133720","main"],["134000","also"],["134300","prints"],["134760","out"],["135065",""],["135370","the"],["135520","value"],["135800",""],["136080","of"],["136190","global."],["136620","So"],["136790","main"],["137150","will"],["137260","not"],["137450","print"],["137690","out"],["137960","0.5050,"],["138373",""],["138786",""],["139200","it"],["139270","will"],["139390","print"],["139750","out"],["140070",""],["140290","global"],["140670","times"],["141100","3,"],["141540","1.51."],["142000",""],["142460",""],["142920",""],["143360",""],["143800",""],["144240",""],["144680","So"],["145040",""],["145375",""],["145710","you've"],["145820","got"],["145910","to"],["145950","be"],["146050","careful"],["146370","when"],["146480","you're"],["146520","working with"],["146790","global"],["147000","variables."],["147340","While"],["147490","they're"],["147650","very"],["148070","flexible"],["148365",""],["148660","in"],["148730","being"],["148970","able"],["149210","to"],["149420","pass"],["149770","information"],["150260","around"],["150670","so"],["150820","that"],["151090","every"],["151390","function"],["151770","can"],["151920","use"],["152120","it,"],["152385",""],["152650","it"],["152760","also"],["152970","can"],["153090","have"],["153230","some"],["153420","dangerous"],["153900","consequences"],["154240",""],["154580","if"],["154910","one"],["155300","function"],["155760","changes"],["156135",""],["156510",""],["156730","the"],["156820","value"],["157310","of"],["157490","a"],["157690","variable"],["158010",""],["158330",""],["158770","before"],["159100","you"],["159210","expect"],["159310","it"],["159680","to"],["159750","be"],["159860","changed."],["160130",""],["160400",""],["160890",""],["161380",""],["161870",""],["162360","Why"],["162660","does"],["162820","this"],["163000","distinction"],["163350",""],["163700","matter?"],["164200","Why"],["164360","do"],["164430","we"],["164530","care"],["164910","whether"],["165140","some"],["165370","variables"],["165780","are"],["165870","local"],["166340","and"],["166570","others"],["166920","are"],["167050","global?"],["167490",""],["167780",""],["168070","Well,"],["168350","for"],["168470","the"],["168570","most"],["168870","part,"],["169140",""],["169410","local"],["169890","variables"],["170300","in"],["170430","C"],["170790",""],["171150","are"],["171300","what's"],["171540","called"],["171890","passed"],["172170",""],["172450","by"],["172760","value"],["173195",""],["173630",""],["173880","when"],["174120","we"],["174240","make"],["174530","a"],["174580","function"],["175050","call."],["175470",""],["175795",""],["176120","What"],["176300","does"],["176460","that"],["176660","mean?"],["176920","Well,"],["177040","when"],["177180","a"],["177270","variable"],["177545","is"],["177820","passed"],["178240","by"],["178370","value,"],["178700",""],["179030","the"],["179440","callee,"],["179710",""],["179980",""],["180290",""],["180600","which"],["180880","is"],["181040","another"],["181260","way"],["181380","of"],["181460","saying"],["181750","the"],["181850","function"],["182185",""],["182520","that"],["182660","is"],["182780","receiving"],["183275",""],["183770","the"],["183900","variable"],["184300","that"],["184350","gets"],["184530","passed"],["184880","in"],["184990","as"],["185090","an"],["185190","input,"],["185485",""],["185780",""],["186045",""],["186310","it"],["186430","actually"],["186670","doesn't"],["186920","receive"],["187205",""],["187490","that"],["187760","variable"],["188240","itself. It"],["188690","receives"],["188980",""],["189270","its"],["189640","own"],["190140","copy"],["190590","of"],["190730","it"],["190900","to"],["191030","work"],["191330","with."],["191690",""],["192090",""],["192490","This"],["192530","is"],["192650","a"],["192830","really"],["193210","important"],["193650","distinction."],["194000",""],["194350","We"],["194490","just"],["194680","saw"],["194880","a"],["194980","second"],["195230","ago"],["195470","that"],["195820","with"],["196100",""],["196160","global"],["196520","variables,"],["196885",""],["197250",""],["197750",""],["198250","if"],["198430","we"],["198790","manipulate"],["199260","the"],["199330","global"],["199580","variable"],["199900","in"],["200000","one"],["200180","function,"],["200505",""],["200830",""],["201110",""],["201330",""],["201760",""],["202130",""],["202570","the"],["202900","effect"],["203240","in"],["203310","that"],["203480","one"],["203650","function"],["204010","carries"],["204370","through"],["204510","to"],["204630","every"],["204890","other"],["205050","function."],["205480",""],["205935",""],["206390","But"],["206770","with"],["206940","local"],["207220","variables,"],["207570","that's"],["207780","not"],["208090","true."],["208530",""],["208920","Each"],["209220","function"],["209630","when"],["209750","it"],["209830","receives"],["210150",""],["210470",""],["210680","variables"],["211080","as"],["211260","input"],["211515",""],["211770",""],["212060","receive"],["212385",""],["212710","copies"],["212985",""],["213260","of"],["213390","those"],["213570","variables,"],["213865",""],["214160",""],["214370","not"],["214790","the"],["214880","variables"],["215350","themselves."],["215710",""],["216070",""],["216410","So"],["216550","what"],["216680","is"],["216770","the"],["216850","side"],["217080","effect"],["217330","of"],["217390","that?"],["217825","That"],["218260","means"],["218420","that"],["218510","the"],["218570","variable"],["218960","in"],["219060","the"],["219180","caller,"],["219590",""],["220000","the"],["220110","function that"],["220450","is"],["220610","making"],["221110","the"],["221190","function"],["221540","call,"],["221960",""],["222280","is"],["222550","unchanged"],["223000",""],["223450","unless"],["223870","you"],["224030","override"],["224290",""],["224550","it."],["224810",""],["225205",""],["225600","For"],["225720","example,"],["226050","in"],["226160","this"],["226400","code"],["226880",""],["227250","foo"],["227580",""],["227910",""],["228245",""],["228580","is"],["228740","not"],["229000","changed"],["229390","at"],["229510","all."],["229910",""],["230165",""],["230420","Int"],["230660","foo"],["230840","equals"],["231180","4,"],["231445",""],["231710",""],["232005",""],["232300","call"],["232600","triple"],["233100","of"],["233230","foo,"],["233500",""],["233770",""],["234225",""],["234680","inside"],["234990","of"],["235080","triple,"],["235450","we"],["235580","would"],["235680","expect"],["236170","that"],["236370","foo"],["236620","would be"],["236790","multiplied"],["237260","by"],["237400","3 and"],["237740","returned,"],["238020",""],["238300",""],["238575",""],["238850","but"],["239230","there's"],["239410","actually"],["239680","no"],["239900","effect."],["240195",""],["240490",""],["240970",""],["241450","Here"],["241750","though,"],["242200",""],["242470","a"],["242530","very"],["242730","subtle"],["243020","difference."],["243460","This"],["243730","does"],["244160","have"],["244360","the"],["244480","effect"],["244820","we"],["244920","want."],["245330",""],["245726",""],["246122",""],["246520","Do you"],["246630","see"],["246810","why?"],["247190",""],["247460",""],["247730","We're"],["248030","overriding"],["248455",""],["248880","foo"],["249160",""],["249440",""],["249760",""],["250080","in"],["250280","main this"],["250770","time."],["251090",""],["251500","So"],["251720","int"],["251860","foo"],["252070","equals"],["252350","4,"],["252820",""],["253100","foo"],["253355",""],["253610","equals"],["254090","triple"],["254470","foo,"],["254870",""],["255155",""],["255440","when"],["255580","we"],["255650","make"],["255900","that"],["256130","call,"],["256400",""],["256670",""],["256899","triple"],["257370","gets"],["257560","its"],["257800","own"],["258100","copy"],["258600","of"],["258709","foo,"],["259149",""],["259494",""],["259839","its"],["260029","own"],["260230","copy"],["260620","of"],["260700","4."],["261140",""],["261410",""],["261680","It"],["261829","says"],["262100","return"],["262395",""],["262690",""],["263100","4"],["263480","times"],["263720","3,"],["264100",""],["264480","or"],["264610","whatever"],["264980","variable"],["265310","gets"],["265460","passed"],["265750","in"],["265880","times"],["266160","3."],["266520",""],["266930",""],["267340","And"],["267550","then"],["267760","we"],["267920","assign"],["268355",""],["268790",""],["269100","the"],["269220","return"],["269670","value"],["270170","of"],["270310","triple"],["270575",""],["270840",""],["271110",""],["271380","to"],["271530","foo"],["271790","again."],["272110","So"],["272210","this"],["272420","actually"],["272690","would"],["272950","overwrite"],["273210",""],["273480","foo."],["273650","This"],["273800","is"],["273890","the"],["274010","only"],["274210","way"],["274330","to"],["274440","do"],["274610","this"],["274790","with"],["274940","local"],["275190","variable."],["275630","So"],["275760","now"],["276105",""],["276450","if"],["276610","we"],["276740","add"],["276950","another"],["277310","line"],["277540","of"],["277630","code"],["277910","here"],["278120","at"],["278190","the"],["278320","end"],["278520","of"],["278610","main"],["278880","to"],["278970","print"],["279430","out"],["279770","the"],["279870","value"],["280280","of"],["280470","foo,"],["280870","it"],["281270","would"],["281460","in"],["281560","fact"],["281850","print"],["282090","out"],["282310","12."],["282695",""],["283080",""],["283567",""],["284054",""],["284541",""],["285030","Variable"],["285420","scope"],["285720",""],["286020",""],["286250",""],["286440",""],["286730",""],["287010","is"],["287160","generally"],["287540","not"],["287820","too"],["287950","much"],["288140","of"],["288190","a"],["288240","problem"],["288600","if"],["288740","you"],["288850","name"],["289190","all of"],["289500","your"],["289610","variables"],["290100","different"],["290480","things."],["290835",""],["291190","But"],["291400","it"],["291500","can"],["291860","get"],["292140","kind"],["292440","of"],["292530","nasty"],["292885",""],["293240",""],["293540","if"],["293740","the"],["293820","same"],["294180","variable"],["294630","name"],["294920","appears"],["295410","in"],["295530","multiple"],["295880","functions,"],["296340","which"],["296570","will"],["296700","happen"],["297130","a"],["297190","lot."],["297515",""],["297840",""],["298330",""],["298820","If"],["298950","you"],["299050",""],["299230",""],["299440",""],["299510","ever"],["299710","do"],["299890","work"],["300330","in"],["300660","the"],["300760","real"],["300950","world"],["301360",""],["301750","where"],["302130","you"],["302360","are"],["302470","working"],["302770","on"],["302840","collaborative"],["303110",""],["303380","programs"],["303880","and"],["303990","people"],["304335",""],["304680",""],["304970",""],["305260","in"],["305440","different"],["305750","teams"],["306080","are"],["306210",""],["306510",""],["306660","working"],["307100","together"],["307410","to"],["307500","write"],["307690","the"],["307780","same"],["308055",""],["308330","program"],["308760","or"],["308810","the"],["308900","same"],["309130","set"],["309410","of"],["309500","programs,"],["309795",""],["310090",""],["310545",""],["311000","they'll"],["311290","frequently"],["311700","reuse"],["312160","variable"],["312560","names,"],["312830","particularly"],["313110",""],["313390","common"],["313730","ones"],["313900","like"],["314080","x,"],["314475","y,"],["314870","i,"],["315265","j,"],["315660","and"],["315800","so"],["316070","on."],["316280",""],["316715",""],["317150",""],["317585",""],["318020","But"],["318260","when"],["318460","variables"],["318840","have"],["319000","the"],["319070","same"],["319360","name,"],["319700","scope"],["320050","issues"],["320370","can"],["320510","get"],["320710","a"],["320780","little"],["321140","trickier"],["321530","to"],["321600","parse."],["321900",""],["322200",""],["322640",""],["323080","For"],["323210","example,"],["323480",""],["323750",""],["324135",""],["324520","do"],["324620","you"],["324780",""],["324980","know"],["325310","what"],["325610","would"],["325680","be"],["325820","printed"],["325920",""],["326360","out"],["326790","at"],["326930","the"],["327160","end"],["327510","of"],["327780","this"],["328100","particular"],["328600","program?"],["328880",""],["329160",""],["329503",""],["329846",""],["330190","Take"],["330400","a"],["330420","minute."],["330860",""],["331280","Pause"],["331450","the"],["331520","video"],["331800",""],["332080",""],["332470","and"],["332700","read"],["332960","through"],["333120","this"],["333300","program."],["333660","You"],["333740","can"],["333850","see"],["333980","at"],["334050","the"],["334120","top"],["334380","we"],["334450","have"],["334590","a"],["334630","function"],["334990","declaration"],["335290",""],["335590","for a"],["335740","function"],["336050","called"],["336320","increment."],["336585",""],["336850",""],["337350","That"],["337520","function"],["337830","takes"],["338040","a"],["338080","single"],["338430","parameter,"],["338690",""],["338950","an"],["339050","integer"],["339450","which"],["339580","we"],["339660","call"],["340000","x."],["340260",""],["340520",""],["340800","And"],["341080","it"],["341350","outputs"],["341665",""],["341980","an"],["342100","integer."],["342355",""],["342610","That's"],["342800","the"],["342880","return"],["343220","type"],["343420","at"],["343470","the"],["343540","beginning."],["343890",""],["344355",""],["344820","Then"],["344940","we"],["345010","have"],["345190","main,"],["345455",""],["345720","a"],["346060","couple of"],["346370","lines"],["346590","of"],["346660","code"],["346930","in"],["347010","main,"],["347510","the"],["347610","last"],["347870","of"],["347950","which"],["348140","is"],["348210","a"],["348270","print"],["348580","statement."],["348915",""],["349250","And"],["349380","remember,"],["349580","that's"],["349915",""],["350250","the"],["350340","question"],["350790","here."],["351140","What"],["351480","is"],["351600","actually"],["351880","going"],["352050","to"],["352130","be"],["352230","printed"],["352670","at"],["352770","the"],["352930","end"],["353100","of"],["353170","this"],["353340","function?"],["353840",""],["354240","And"],["354480","then we"],["354580","actually"],["354820","have"],["354980","the"],["355080","definition"],["355545",""],["356010",""],["356280","of"],["356510","increment"],["356940","below."],["357280",""],["357695",""],["358110","So"],["358220","take"],["358440","a"],["358490","minute,"],["358795",""],["359100","step"],["359450","through"],["359580","the"],["359690","code,"],["360120",""],["360550","trace"],["360860","things"],["361150","out."],["361460",""],["361760","Do you know"],["362060","what"],["362410",""],["362760","will"],["362820","be"],["363010","printed"],["363310",""],["363610",""],["363860","at"],["363980","the"],["364200","end"],["364490",""],["364780","of"],["364970","this"],["365190","particular"],["365610","program?"],["366100",""],["366600",""],["367100",""],["367600",""],["368100","All right."],["368600","Hopefully, you've"],["369010","taken"],["369290","a"],["369340","few"],["369470","seconds"],["369850","to"],["369950","try"],["370160","and"],["370270","parse"],["370550","this"],["370700","one"],["370870","out."],["371110",""],["371340","Let's"],["371530","do"],["371640","it"],["371740","together."],["372210",""],["372596",""],["372982",""],["373370","So"],["373460","I've"],["373560","crossed"],["373950","out"],["374210","increment's"],["374550",""],["374890","declaration"],["375190",""],["375490","at"],["375540","the"],["375620","top"],["375920","there."],["376100","It was"],["376210","kind"],["376440","of"],["376540","a"],["376590","distraction."],["376910",""],["377230","It's"],["377380","not"],["377540","its"],["377780","own"],["378100","variable."],["378570","It"],["378990","doesn't"],["379170","have"],["379290","its"],["379440","own"],["379670","scope."],["380140","It's"],["380250","just"],["380420","a"],["380460","function"],["380740","declaration,"],["380995",""],["381250","so"],["381380","for"],["381490","purposes"],["381920","of"],["382110","trying"],["382380","to"],["382450","parse"],["382760","out"],["382920","what's"],["383150","happening"],["383580","in"],["383650","this"],["383790","program,"],["384060",""],["384330","we"],["384530","might"],["384680","as"],["384760","well"],["384900","just"],["385090","avoid"],["385380","it."],["385840",""],["386250",""],["386660","Now"],["387130",""],["387540","we"],["387690","have"],["387980","in"],["388080","this"],["388260","case,"],["388570","the"],["388670","reason"],["388810","this"],["388900","problem is"],["389240","tricky"],["389560","is"],["389650","because"],["389880","we"],["389950","have"],["390190","local"],["390530","variables"],["390800",""],["391070","in"],["391190","both"],["391440","main"],["391855",""],["392270","and"],["392590","increment,"],["392900",""],["393210",""],["393470","each"],["393700","of"],["393820","which"],["394030","is"],["394150","called"],["394440",""],["394730","x."],["395090","And"],["395170","of"],["395240","course"],["395460","the"],["395570","crux"],["395910","of"],["395990","this"],["396140","issue"],["396430","is"],["396540","trying"],["396820","to"],["396940","suss"],["397270","out"],["397730",""],["397985",""],["398240","which"],["398650","x"],["399000","gets"],["399310","changed"],["399570",""],["399830","and"],["399920","how"],["400250","does"],["400410","it"],["400510","get"],["400710","changed."],["400965",""],["401220",""],["401555",""],["401890","So"],["401990","I've"],["402120","colored"],["402620","every"],["403020","instance"],["403390","of"],["403580","x"],["403900","that's"],["404110","local"],["404510","to"],["404640","main"],["404945",""],["405250",""],["405560",""],["405870","red."],["406360",""],["406630",""],["406900","And"],["407020","I've"],["407120","colored"],["407570","every"],["407900","instance"],["408330","of"],["408450","x"],["408740","that's"],["408920","local"],["409280","to"],["409490","increment"],["409795",""],["410100",""],["410450",""],["410800","blue."],["411170",""],["411605",""],["412040","Notice"],["412280","in"],["412380","that"],["412630","third"],["412910","line"],["413150","of"],["413250","main,"],["413700","y"],["414200","equals"],["414480",""],["414760","increment"],["415220","x,"],["415545",""],["415870",""],["416170","that"],["416340","increment"],["416750","is"],["416900","not"],["417220","being"],["417480","passed"],["417795",""],["418110","main's"],["418385",""],["418660","x,"],["418970","or"],["419090","the"],["419370","red"],["419650","x."],["419930",""],["420210",""],["420505",""],["420800","It's"],["420930","getting"],["421140","passed"],["421430","a"],["421550","copy"],["422000","of"],["422080","it."],["422330",""],["422825",""],["423320","And"],["423490","it's"],["423620","only"],["423810","going"],["423900","to"],["423940","work"],["424150","with"],["424250","that"],["424480","copy"],["424880","of"],["424970","it,"],["425340","the"],["425420","blue"],["425880",""],["426190","x."],["426500",""],["426950",""],["427400","If"],["427520","you're"],["427640","mathematically"],["427925",""],["428210","inclined,"],["428610","you"],["428680","might"],["428820","have"],["428940","instead"],["429205",""],["429470","thought"],["429670","of"],["429760","this"],["430020","as"],["430420","x"],["430760","sub"],["431050","m"],["431440","for"],["431610","main"],["431875",""],["432140","and"],["432400","x"],["432720","sub"],["432990","i"],["433440",""],["433680","for"],["433840","increment."],["434230","But"],["434320","it's"],["434430","the"],["434520","same"],["434830","idea."],["435090",""],["435350",""],["435700","x"],["436020","sub"],["436250","m,"],["436600","or"],["436750","the"],["436950","red"],["437210","x's"],["437610","in"],["437680","the"],["437760","previous"],["438140","slide,"],["438600",""],["439000","are"],["439100","the"],["439210","variables"],["439630","that"],["439720","are"],["439810","local--"],["440150",""],["440490","is"],["440630","the"],["440770","instance"],["441080","of"],["441190","x"],["441460","rather"],["441670","that"],["441790","is"],["441920","local"],["442370","to"],["442480","main,"],["442755",""],["443030",""],["443370",""],["443710","and"],["443940","x"],["444240","sub"],["444470","i,"],["444810","or"],["444910","the"],["445010","blue"],["445300","variables"],["445770","in"],["445830","the"],["445910","previous"],["446280","slide,"],["446590",""],["446900","are"],["447010","the"],["447180","instances"],["447445",""],["447710","of"],["447840","x"],["448135",""],["448430","that"],["448560","are"],["448660","local"],["448920",""],["449180","to"],["449520","increment."],["449815",""],["450110",""],["450435",""],["450760","So,"],["451100",""],["451435","were"],["451770","you"],["451990","able"],["452130","to"],["452180","figure"],["452490","out"],["452630","what"],["452780","this"],["452930","function"],["453260","printed"],["453590",""],["453920","at"],["454060","the"],["454180","end?"],["454450",""],["454892",""],["455334",""],["455776",""],["456220","I'm"],["456390","Doug"],["456610","Lloyd,"],["456970",""],["457260","and"],["457430","this"],["457750","is"],["457870","CS50."],["458170",""],["458470",""],["458770",""],["459070",""],["459370",""],["459670",""],["459970",""],["460270",""],["460570",""],["460870",""],["461170",""],["461470",""]],"paragraphs":[0,5890,18860,48940,79360,90010,112940,144680,162360,176920,206390,225600,241450,251500,285030,318020,333660,344820,358110,368100,373370,386660,412040,427400,450760],"speakers":{"5890":"DOUG LLOYD"}}