├── .gitignore ├── Figures ├── Makefile ├── cosSinProd-ad.dot ├── cosSinProd.dot ├── horner-iv.dot ├── horner.dot ├── lsums-rb4.dot ├── magSqr-ad.dot ├── magSqr.dot ├── next-700-title.pdf ├── peter-landin.jpg ├── sum-t4.dot ├── wobbly-disk.dot ├── xp3y-curried.dot ├── xp3y-iv.dot └── xp3y.dot ├── Makefile ├── README.md ├── formatting.fmt ├── macros.tex ├── teaching-new-tricks-to-old-programs.lhs └── todo.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/.gitignore -------------------------------------------------------------------------------- /Figures/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | cd ..; make all 3 | -------------------------------------------------------------------------------- /Figures/cosSinProd-ad.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/cosSinProd-ad.dot -------------------------------------------------------------------------------- /Figures/cosSinProd.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/cosSinProd.dot -------------------------------------------------------------------------------- /Figures/horner-iv.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/horner-iv.dot -------------------------------------------------------------------------------- /Figures/horner.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/horner.dot -------------------------------------------------------------------------------- /Figures/lsums-rb4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/lsums-rb4.dot -------------------------------------------------------------------------------- /Figures/magSqr-ad.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/magSqr-ad.dot -------------------------------------------------------------------------------- /Figures/magSqr.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/magSqr.dot -------------------------------------------------------------------------------- /Figures/next-700-title.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/next-700-title.pdf -------------------------------------------------------------------------------- /Figures/peter-landin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/peter-landin.jpg -------------------------------------------------------------------------------- /Figures/sum-t4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/sum-t4.dot -------------------------------------------------------------------------------- /Figures/wobbly-disk.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/wobbly-disk.dot -------------------------------------------------------------------------------- /Figures/xp3y-curried.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/xp3y-curried.dot -------------------------------------------------------------------------------- /Figures/xp3y-iv.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/xp3y-iv.dot -------------------------------------------------------------------------------- /Figures/xp3y.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Figures/xp3y.dot -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/README.md -------------------------------------------------------------------------------- /formatting.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/formatting.fmt -------------------------------------------------------------------------------- /macros.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/macros.tex -------------------------------------------------------------------------------- /teaching-new-tricks-to-old-programs.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/teaching-new-tricks-to-old-programs.lhs -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conal/2017-talk-teaching-new-tricks-to-old-programs/HEAD/todo.md --------------------------------------------------------------------------------