1 00:00:05,860 --> 00:00:08,915 Over the next few lectures we're going to advance study intermediate student 2 00:00:08,915 --> 00:00:12,980 language and learn a new language construct called the local expression. 3 00:00:14,050 --> 00:00:17,059 What local expressions let us do is to have definitions, functions and 4 00:00:17,059 --> 00:00:21,480 constants, that are only available within one small part of the program. 5 00:00:23,120 --> 00:00:26,654 Once we learn how local works, which we'll do over three short videos, then 6 00:00:26,654 --> 00:00:30,590 we're going to look at two important ways to use local. 7 00:00:31,630 --> 00:00:35,410 One has to do with organizing programs that are large or written by more than 8 00:00:35,410 --> 00:00:38,710 one person. Another has to do with dealing with 9 00:00:38,710 --> 00:00:42,430 important performance problems when we can't use local.