├── .gitignore ├── Exercises ├── mystery-semantics-functions.rkt ├── mystery-semantics-records.rkt └── mystery-semantics-variables.rkt ├── Next ├── content-notes.txt ├── funding-notes.txt ├── invite.txt ├── responses.txt └── signup-notes.txt ├── Plan ├── .gitignore ├── Code │ ├── mon-aft-1.rkt │ ├── mon-aft-meta.rkt │ ├── mon-mor-1.rkt │ ├── mon-mor-2.rkt │ ├── mon-mor-3.rkt │ ├── mon-mor-4.rkt │ ├── pcf-with-state.rkt │ ├── thu-mor.rkt │ ├── tue-mor-1.rkt │ └── wed-mor.rkt ├── Exercise │ ├── counter.rkt │ └── ex.rkt ├── Images │ ├── subject-reduction.png │ ├── traces.png │ └── traces1.png ├── Resources │ ├── compare-testing.rkt │ ├── compare.rkt │ ├── icfp-2017-lindemayer.pdf │ ├── icfp-2017-video.pdf │ ├── lwc-languages-the-racket-way.pdf │ ├── property-based-testing.rkt │ ├── sk-scripting-research-talk.pptx │ ├── testing-in-impl.rkt │ └── testing-in-model.rkt ├── fri-diagram.rkt ├── lab-fri-mor.scrbl ├── lab-mon-aft.scrbl ├── lab-mon-mor.scrbl ├── lab-thu-aft.scrbl ├── lab-thu-mor.scrbl ├── lab-tue-aft.scrbl ├── lab-tue-mor.scrbl ├── lab-wed-event.scrbl ├── lab-wed-mor.scrbl ├── plan.txt ├── pre-fri-aft.scrbl ├── pre-fri-mor.scrbl ├── pre-mon-aft.scrbl ├── pre-mon-mor.scrbl ├── pre-thu-aft.scrbl ├── pre-thu-mor.scrbl ├── pre-tue-aft.scrbl ├── pre-tue-mor.scrbl ├── pre-wed-aft.scrbl ├── pre-wed-mor.scrbl ├── ql │ ├── 0-house-direct.rkt │ ├── 0-house.ql │ ├── 0-house.rkt │ ├── 1-form.rkt │ ├── 1-house-direct.rkt │ ├── 2-form.rkt │ ├── 2-house-direct.rkt │ ├── 3-form.rkt │ ├── 3-house-direct.rkt │ ├── 4-form.rkt │ ├── 4-house.rkt │ ├── 5-form.rkt │ ├── 5-house.rkt │ ├── 6-form.rkt │ ├── 6-house.rkt │ ├── 7-form.rkt │ ├── 7-house.rkt │ ├── 8-form.rkt │ ├── 8-house.rkt │ ├── 9-form.rkt │ ├── 9-house.rkt │ ├── A-house.ql │ ├── color-lexer.rkt │ ├── gui.rkt │ ├── has-type.rkt │ ├── main.rkt │ ├── ops.rkt │ ├── parser.rkt │ └── reader.rkt ├── shared.rkt ├── summer-school.scrbl ├── xdraft ├── xrelease └── xupload ├── README.md ├── Web ├── .gitignore ├── Makefile └── index.scrbl ├── assignments ├── 1.txt └── 2.txt └── report ├── .gitignore ├── report.scrbl ├── rs2018-group.jpg ├── survey-responses.csv └── survey-responses.rkt /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /Exercises/mystery-semantics-functions.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Exercises/mystery-semantics-functions.rkt -------------------------------------------------------------------------------- /Exercises/mystery-semantics-records.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Exercises/mystery-semantics-records.rkt -------------------------------------------------------------------------------- /Exercises/mystery-semantics-variables.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Exercises/mystery-semantics-variables.rkt -------------------------------------------------------------------------------- /Next/content-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Next/content-notes.txt -------------------------------------------------------------------------------- /Next/funding-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Next/funding-notes.txt -------------------------------------------------------------------------------- /Next/invite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Next/invite.txt -------------------------------------------------------------------------------- /Next/responses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Next/responses.txt -------------------------------------------------------------------------------- /Next/signup-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Next/signup-notes.txt -------------------------------------------------------------------------------- /Plan/.gitignore: -------------------------------------------------------------------------------- 1 | /Tmp/ 2 | /ql.zip 3 | 4 | compiled 5 | -------------------------------------------------------------------------------- /Plan/Code/mon-aft-1.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Code/mon-aft-1.rkt -------------------------------------------------------------------------------- /Plan/Code/mon-aft-meta.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Code/mon-aft-meta.rkt -------------------------------------------------------------------------------- /Plan/Code/mon-mor-1.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Code/mon-mor-1.rkt -------------------------------------------------------------------------------- /Plan/Code/mon-mor-2.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Code/mon-mor-2.rkt -------------------------------------------------------------------------------- /Plan/Code/mon-mor-3.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Code/mon-mor-3.rkt -------------------------------------------------------------------------------- /Plan/Code/mon-mor-4.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Code/mon-mor-4.rkt -------------------------------------------------------------------------------- /Plan/Code/pcf-with-state.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Code/pcf-with-state.rkt -------------------------------------------------------------------------------- /Plan/Code/thu-mor.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Code/thu-mor.rkt -------------------------------------------------------------------------------- /Plan/Code/tue-mor-1.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Code/tue-mor-1.rkt -------------------------------------------------------------------------------- /Plan/Code/wed-mor.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Code/wed-mor.rkt -------------------------------------------------------------------------------- /Plan/Exercise/counter.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Exercise/counter.rkt -------------------------------------------------------------------------------- /Plan/Exercise/ex.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Exercise/ex.rkt -------------------------------------------------------------------------------- /Plan/Images/subject-reduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Images/subject-reduction.png -------------------------------------------------------------------------------- /Plan/Images/traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Images/traces.png -------------------------------------------------------------------------------- /Plan/Images/traces1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Images/traces1.png -------------------------------------------------------------------------------- /Plan/Resources/compare-testing.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Resources/compare-testing.rkt -------------------------------------------------------------------------------- /Plan/Resources/compare.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Resources/compare.rkt -------------------------------------------------------------------------------- /Plan/Resources/icfp-2017-lindemayer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Resources/icfp-2017-lindemayer.pdf -------------------------------------------------------------------------------- /Plan/Resources/icfp-2017-video.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Resources/icfp-2017-video.pdf -------------------------------------------------------------------------------- /Plan/Resources/lwc-languages-the-racket-way.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Resources/lwc-languages-the-racket-way.pdf -------------------------------------------------------------------------------- /Plan/Resources/property-based-testing.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Resources/property-based-testing.rkt -------------------------------------------------------------------------------- /Plan/Resources/sk-scripting-research-talk.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/Resources/sk-scripting-research-talk.pptx -------------------------------------------------------------------------------- /Plan/Resources/testing-in-impl.rkt: -------------------------------------------------------------------------------- 1 | #lang RecImpl 2 | 3 | + -------------------------------------------------------------------------------- /Plan/Resources/testing-in-model.rkt: -------------------------------------------------------------------------------- 1 | #lang RacketSchool/Records1 2 | 3 | (defun (f x) x) 4 | 5 | f 6 | -------------------------------------------------------------------------------- /Plan/fri-diagram.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/fri-diagram.rkt -------------------------------------------------------------------------------- /Plan/lab-fri-mor.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/lab-fri-mor.scrbl -------------------------------------------------------------------------------- /Plan/lab-mon-aft.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/lab-mon-aft.scrbl -------------------------------------------------------------------------------- /Plan/lab-mon-mor.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/lab-mon-mor.scrbl -------------------------------------------------------------------------------- /Plan/lab-thu-aft.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/lab-thu-aft.scrbl -------------------------------------------------------------------------------- /Plan/lab-thu-mor.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/lab-thu-mor.scrbl -------------------------------------------------------------------------------- /Plan/lab-tue-aft.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/lab-tue-aft.scrbl -------------------------------------------------------------------------------- /Plan/lab-tue-mor.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/lab-tue-mor.scrbl -------------------------------------------------------------------------------- /Plan/lab-wed-event.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/lab-wed-event.scrbl -------------------------------------------------------------------------------- /Plan/lab-wed-mor.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/lab-wed-mor.scrbl -------------------------------------------------------------------------------- /Plan/plan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/plan.txt -------------------------------------------------------------------------------- /Plan/pre-fri-aft.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/pre-fri-aft.scrbl -------------------------------------------------------------------------------- /Plan/pre-fri-mor.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/pre-fri-mor.scrbl -------------------------------------------------------------------------------- /Plan/pre-mon-aft.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/pre-mon-aft.scrbl -------------------------------------------------------------------------------- /Plan/pre-mon-mor.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/pre-mon-mor.scrbl -------------------------------------------------------------------------------- /Plan/pre-thu-aft.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/pre-thu-aft.scrbl -------------------------------------------------------------------------------- /Plan/pre-thu-mor.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/pre-thu-mor.scrbl -------------------------------------------------------------------------------- /Plan/pre-tue-aft.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/pre-tue-aft.scrbl -------------------------------------------------------------------------------- /Plan/pre-tue-mor.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/pre-tue-mor.scrbl -------------------------------------------------------------------------------- /Plan/pre-wed-aft.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/pre-wed-aft.scrbl -------------------------------------------------------------------------------- /Plan/pre-wed-mor.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/pre-wed-mor.scrbl -------------------------------------------------------------------------------- /Plan/ql/0-house-direct.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/0-house-direct.rkt -------------------------------------------------------------------------------- /Plan/ql/0-house.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/0-house.ql -------------------------------------------------------------------------------- /Plan/ql/0-house.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/0-house.rkt -------------------------------------------------------------------------------- /Plan/ql/1-form.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/1-form.rkt -------------------------------------------------------------------------------- /Plan/ql/1-house-direct.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/1-house-direct.rkt -------------------------------------------------------------------------------- /Plan/ql/2-form.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/2-form.rkt -------------------------------------------------------------------------------- /Plan/ql/2-house-direct.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/2-house-direct.rkt -------------------------------------------------------------------------------- /Plan/ql/3-form.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/3-form.rkt -------------------------------------------------------------------------------- /Plan/ql/3-house-direct.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/3-house-direct.rkt -------------------------------------------------------------------------------- /Plan/ql/4-form.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/4-form.rkt -------------------------------------------------------------------------------- /Plan/ql/4-house.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/4-house.rkt -------------------------------------------------------------------------------- /Plan/ql/5-form.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/5-form.rkt -------------------------------------------------------------------------------- /Plan/ql/5-house.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/5-house.rkt -------------------------------------------------------------------------------- /Plan/ql/6-form.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/6-form.rkt -------------------------------------------------------------------------------- /Plan/ql/6-house.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/6-house.rkt -------------------------------------------------------------------------------- /Plan/ql/7-form.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/7-form.rkt -------------------------------------------------------------------------------- /Plan/ql/7-house.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/7-house.rkt -------------------------------------------------------------------------------- /Plan/ql/8-form.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/8-form.rkt -------------------------------------------------------------------------------- /Plan/ql/8-house.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/8-house.rkt -------------------------------------------------------------------------------- /Plan/ql/9-form.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/9-form.rkt -------------------------------------------------------------------------------- /Plan/ql/9-house.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/9-house.rkt -------------------------------------------------------------------------------- /Plan/ql/A-house.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/A-house.ql -------------------------------------------------------------------------------- /Plan/ql/color-lexer.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/color-lexer.rkt -------------------------------------------------------------------------------- /Plan/ql/gui.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/gui.rkt -------------------------------------------------------------------------------- /Plan/ql/has-type.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/has-type.rkt -------------------------------------------------------------------------------- /Plan/ql/main.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/main.rkt -------------------------------------------------------------------------------- /Plan/ql/ops.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/ops.rkt -------------------------------------------------------------------------------- /Plan/ql/parser.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/parser.rkt -------------------------------------------------------------------------------- /Plan/ql/reader.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/ql/reader.rkt -------------------------------------------------------------------------------- /Plan/shared.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/shared.rkt -------------------------------------------------------------------------------- /Plan/summer-school.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/summer-school.scrbl -------------------------------------------------------------------------------- /Plan/xdraft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/xdraft -------------------------------------------------------------------------------- /Plan/xrelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/xrelease -------------------------------------------------------------------------------- /Plan/xupload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Plan/xupload -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/README.md -------------------------------------------------------------------------------- /Web/.gitignore: -------------------------------------------------------------------------------- 1 | /2017/ 2 | -------------------------------------------------------------------------------- /Web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Web/Makefile -------------------------------------------------------------------------------- /Web/index.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/Web/index.scrbl -------------------------------------------------------------------------------- /assignments/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/assignments/1.txt -------------------------------------------------------------------------------- /assignments/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/assignments/2.txt -------------------------------------------------------------------------------- /report/.gitignore: -------------------------------------------------------------------------------- 1 | report.pdf 2 | -------------------------------------------------------------------------------- /report/report.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/report/report.scrbl -------------------------------------------------------------------------------- /report/rs2018-group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/report/rs2018-group.jpg -------------------------------------------------------------------------------- /report/survey-responses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/report/survey-responses.csv -------------------------------------------------------------------------------- /report/survey-responses.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelleisen/RacketSchool/HEAD/report/survey-responses.rkt --------------------------------------------------------------------------------