├── .gitignore ├── Chapter01 ├── 6.scala └── 7.scala ├── Chapter02 ├── 01.scala ├── 04.scala ├── 06.scala ├── 09.scala └── 10.scala ├── Chapter03 ├── 01.scala ├── 03.scala ├── 04.scala ├── 05.scala ├── 06.scala ├── 07.scala ├── 08.scala ├── 09.scala └── 10.scala ├── Chapter04 ├── 01.scala ├── 02.scala ├── 03.scala ├── 04.scala ├── 05.scala ├── 06.scala ├── 07.scala ├── 08.scala ├── 09.scala ├── 10.scala └── gpl.txt ├── Chapter05 ├── 01.scala ├── 02.scala ├── 03.scala ├── 04.scala ├── 05.scala ├── 06.scala ├── 07.scala ├── 08.scala └── 10.scala ├── Chapter06 ├── 01.scala ├── 02.scala ├── 03.scala ├── 04.scala ├── 05.scala ├── 06.scala ├── 07.scala └── 08.scala ├── Chapter07 ├── 03.scala ├── 06.scala └── 09.scala ├── Chapter08 ├── 01.scala ├── 02.scala ├── 03.scala ├── 04.scala ├── 05.scala ├── 06.scala ├── 07.scala ├── 08.scala └── 09.scala ├── Chapter09 ├── 01.scala ├── 01.txt ├── 02.scala ├── 02.txt ├── 03.scala ├── 03.txt ├── 04.scala ├── 04.txt ├── 05.scala ├── 06.scala ├── 06.txt ├── 07.scala ├── 07.txt ├── 08.scala ├── 09.scala └── 10.scala ├── Chapter10 ├── 01.scala ├── 02.scala ├── 04.scala ├── 05.scala ├── 07.scala ├── 08.scala ├── 08.txt ├── 09.scala ├── 10.scala └── 10.txt ├── Chapter11 ├── 03.scala ├── 04.scala ├── 05.scala ├── 06.scala ├── 07.scala ├── 08.scala ├── 09.scala └── 10.scala ├── Chapter12 ├── 01.scala ├── 02.scala ├── 03.scala ├── 04.scala ├── 05.scala ├── 06.scala ├── 07.scala ├── 08.scala ├── 09.scala └── 10.scala ├── Chapter13 ├── 01.scala ├── 02.scala ├── 03.scala ├── 04.scala ├── 05.scala ├── 06.scala ├── 07.scala ├── 08.scala ├── 10.scala └── 10.txt ├── Chapter14 ├── 02.scala ├── 03.scala ├── 04.scala ├── 05.scala ├── 06.scala ├── 07.scala ├── 08.scala ├── 09.scala └── 10.scala ├── Chapter15 └── 06.scala └── Chapter16 ├── 02.scala ├── 04.scala ├── 05.scala ├── 06.scala ├── 07.scala └── tagsoup-1.2.1.jar /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter01/6.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter01/6.scala -------------------------------------------------------------------------------- /Chapter01/7.scala: -------------------------------------------------------------------------------- 1 | println(BigInt(128, util.Random).toString(36)) 2 | 3 | -------------------------------------------------------------------------------- /Chapter02/01.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter02/01.scala -------------------------------------------------------------------------------- /Chapter02/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter02/04.scala -------------------------------------------------------------------------------- /Chapter02/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter02/06.scala -------------------------------------------------------------------------------- /Chapter02/09.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter02/09.scala -------------------------------------------------------------------------------- /Chapter02/10.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter02/10.scala -------------------------------------------------------------------------------- /Chapter03/01.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter03/01.scala -------------------------------------------------------------------------------- /Chapter03/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter03/03.scala -------------------------------------------------------------------------------- /Chapter03/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter03/04.scala -------------------------------------------------------------------------------- /Chapter03/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter03/05.scala -------------------------------------------------------------------------------- /Chapter03/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter03/06.scala -------------------------------------------------------------------------------- /Chapter03/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter03/07.scala -------------------------------------------------------------------------------- /Chapter03/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter03/08.scala -------------------------------------------------------------------------------- /Chapter03/09.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter03/09.scala -------------------------------------------------------------------------------- /Chapter03/10.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter03/10.scala -------------------------------------------------------------------------------- /Chapter04/01.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/01.scala -------------------------------------------------------------------------------- /Chapter04/02.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/02.scala -------------------------------------------------------------------------------- /Chapter04/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/03.scala -------------------------------------------------------------------------------- /Chapter04/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/04.scala -------------------------------------------------------------------------------- /Chapter04/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/05.scala -------------------------------------------------------------------------------- /Chapter04/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/06.scala -------------------------------------------------------------------------------- /Chapter04/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/07.scala -------------------------------------------------------------------------------- /Chapter04/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/08.scala -------------------------------------------------------------------------------- /Chapter04/09.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/09.scala -------------------------------------------------------------------------------- /Chapter04/10.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/10.scala -------------------------------------------------------------------------------- /Chapter04/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter04/gpl.txt -------------------------------------------------------------------------------- /Chapter05/01.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter05/01.scala -------------------------------------------------------------------------------- /Chapter05/02.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter05/02.scala -------------------------------------------------------------------------------- /Chapter05/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter05/03.scala -------------------------------------------------------------------------------- /Chapter05/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter05/04.scala -------------------------------------------------------------------------------- /Chapter05/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter05/05.scala -------------------------------------------------------------------------------- /Chapter05/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter05/06.scala -------------------------------------------------------------------------------- /Chapter05/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter05/07.scala -------------------------------------------------------------------------------- /Chapter05/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter05/08.scala -------------------------------------------------------------------------------- /Chapter05/10.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter05/10.scala -------------------------------------------------------------------------------- /Chapter06/01.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter06/01.scala -------------------------------------------------------------------------------- /Chapter06/02.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter06/02.scala -------------------------------------------------------------------------------- /Chapter06/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter06/03.scala -------------------------------------------------------------------------------- /Chapter06/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter06/04.scala -------------------------------------------------------------------------------- /Chapter06/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter06/05.scala -------------------------------------------------------------------------------- /Chapter06/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter06/06.scala -------------------------------------------------------------------------------- /Chapter06/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter06/07.scala -------------------------------------------------------------------------------- /Chapter06/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter06/08.scala -------------------------------------------------------------------------------- /Chapter07/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter07/03.scala -------------------------------------------------------------------------------- /Chapter07/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter07/06.scala -------------------------------------------------------------------------------- /Chapter07/09.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter07/09.scala -------------------------------------------------------------------------------- /Chapter08/01.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter08/01.scala -------------------------------------------------------------------------------- /Chapter08/02.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter08/02.scala -------------------------------------------------------------------------------- /Chapter08/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter08/03.scala -------------------------------------------------------------------------------- /Chapter08/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter08/04.scala -------------------------------------------------------------------------------- /Chapter08/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter08/05.scala -------------------------------------------------------------------------------- /Chapter08/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter08/06.scala -------------------------------------------------------------------------------- /Chapter08/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter08/07.scala -------------------------------------------------------------------------------- /Chapter08/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter08/08.scala -------------------------------------------------------------------------------- /Chapter08/09.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter08/09.scala -------------------------------------------------------------------------------- /Chapter09/01.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/01.scala -------------------------------------------------------------------------------- /Chapter09/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/01.txt -------------------------------------------------------------------------------- /Chapter09/02.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/02.scala -------------------------------------------------------------------------------- /Chapter09/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/02.txt -------------------------------------------------------------------------------- /Chapter09/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/03.scala -------------------------------------------------------------------------------- /Chapter09/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/03.txt -------------------------------------------------------------------------------- /Chapter09/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/04.scala -------------------------------------------------------------------------------- /Chapter09/04.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 6.6 333.1 5 | 33 -------------------------------------------------------------------------------- /Chapter09/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/05.scala -------------------------------------------------------------------------------- /Chapter09/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/06.scala -------------------------------------------------------------------------------- /Chapter09/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/06.txt -------------------------------------------------------------------------------- /Chapter09/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/07.scala -------------------------------------------------------------------------------- /Chapter09/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/07.txt -------------------------------------------------------------------------------- /Chapter09/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/08.scala -------------------------------------------------------------------------------- /Chapter09/09.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/09.scala -------------------------------------------------------------------------------- /Chapter09/10.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter09/10.scala -------------------------------------------------------------------------------- /Chapter10/01.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter10/01.scala -------------------------------------------------------------------------------- /Chapter10/02.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter10/02.scala -------------------------------------------------------------------------------- /Chapter10/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter10/04.scala -------------------------------------------------------------------------------- /Chapter10/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter10/05.scala -------------------------------------------------------------------------------- /Chapter10/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter10/07.scala -------------------------------------------------------------------------------- /Chapter10/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter10/08.scala -------------------------------------------------------------------------------- /Chapter10/08.txt: -------------------------------------------------------------------------------- 1 | 0123456789 -------------------------------------------------------------------------------- /Chapter10/09.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter10/09.scala -------------------------------------------------------------------------------- /Chapter10/10.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter10/10.scala -------------------------------------------------------------------------------- /Chapter10/10.txt: -------------------------------------------------------------------------------- 1 | 0123456789 -------------------------------------------------------------------------------- /Chapter11/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter11/03.scala -------------------------------------------------------------------------------- /Chapter11/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter11/04.scala -------------------------------------------------------------------------------- /Chapter11/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter11/05.scala -------------------------------------------------------------------------------- /Chapter11/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter11/06.scala -------------------------------------------------------------------------------- /Chapter11/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter11/07.scala -------------------------------------------------------------------------------- /Chapter11/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter11/08.scala -------------------------------------------------------------------------------- /Chapter11/09.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter11/09.scala -------------------------------------------------------------------------------- /Chapter11/10.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter11/10.scala -------------------------------------------------------------------------------- /Chapter12/01.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter12/01.scala -------------------------------------------------------------------------------- /Chapter12/02.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter12/02.scala -------------------------------------------------------------------------------- /Chapter12/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter12/03.scala -------------------------------------------------------------------------------- /Chapter12/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter12/04.scala -------------------------------------------------------------------------------- /Chapter12/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter12/05.scala -------------------------------------------------------------------------------- /Chapter12/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter12/06.scala -------------------------------------------------------------------------------- /Chapter12/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter12/07.scala -------------------------------------------------------------------------------- /Chapter12/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter12/08.scala -------------------------------------------------------------------------------- /Chapter12/09.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter12/09.scala -------------------------------------------------------------------------------- /Chapter12/10.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter12/10.scala -------------------------------------------------------------------------------- /Chapter13/01.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter13/01.scala -------------------------------------------------------------------------------- /Chapter13/02.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter13/02.scala -------------------------------------------------------------------------------- /Chapter13/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter13/03.scala -------------------------------------------------------------------------------- /Chapter13/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter13/04.scala -------------------------------------------------------------------------------- /Chapter13/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter13/05.scala -------------------------------------------------------------------------------- /Chapter13/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter13/06.scala -------------------------------------------------------------------------------- /Chapter13/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter13/07.scala -------------------------------------------------------------------------------- /Chapter13/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter13/08.scala -------------------------------------------------------------------------------- /Chapter13/10.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter13/10.scala -------------------------------------------------------------------------------- /Chapter13/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter13/10.txt -------------------------------------------------------------------------------- /Chapter14/02.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter14/02.scala -------------------------------------------------------------------------------- /Chapter14/03.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter14/03.scala -------------------------------------------------------------------------------- /Chapter14/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter14/04.scala -------------------------------------------------------------------------------- /Chapter14/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter14/05.scala -------------------------------------------------------------------------------- /Chapter14/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter14/06.scala -------------------------------------------------------------------------------- /Chapter14/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter14/07.scala -------------------------------------------------------------------------------- /Chapter14/08.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter14/08.scala -------------------------------------------------------------------------------- /Chapter14/09.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter14/09.scala -------------------------------------------------------------------------------- /Chapter14/10.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter14/10.scala -------------------------------------------------------------------------------- /Chapter15/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter15/06.scala -------------------------------------------------------------------------------- /Chapter16/02.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter16/02.scala -------------------------------------------------------------------------------- /Chapter16/04.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter16/04.scala -------------------------------------------------------------------------------- /Chapter16/05.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter16/05.scala -------------------------------------------------------------------------------- /Chapter16/06.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter16/06.scala -------------------------------------------------------------------------------- /Chapter16/07.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter16/07.scala -------------------------------------------------------------------------------- /Chapter16/tagsoup-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hempalex/scala-impatient/HEAD/Chapter16/tagsoup-1.2.1.jar --------------------------------------------------------------------------------