├── .gitignore ├── Classes ├── DetailViewController.h ├── DetailViewController.m ├── LispAppDelegate.h ├── LispAppDelegate.m ├── PerformOMatic.h ├── PerformOMatic.m ├── RootViewController.h └── RootViewController.m ├── DetailView.xib ├── Lisp-Info.plist ├── Lisp.cabal ├── Lisp.xcodeproj ├── dpp.mode1v3 ├── dpp.pbxuser └── project.pbxproj ├── Lisp_Prefix.pch ├── Main.hs ├── MainWindow.xib ├── README └── main.m /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /Classes/DetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Classes/DetailViewController.h -------------------------------------------------------------------------------- /Classes/DetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Classes/DetailViewController.m -------------------------------------------------------------------------------- /Classes/LispAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Classes/LispAppDelegate.h -------------------------------------------------------------------------------- /Classes/LispAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Classes/LispAppDelegate.m -------------------------------------------------------------------------------- /Classes/PerformOMatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Classes/PerformOMatic.h -------------------------------------------------------------------------------- /Classes/PerformOMatic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Classes/PerformOMatic.m -------------------------------------------------------------------------------- /Classes/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Classes/RootViewController.h -------------------------------------------------------------------------------- /Classes/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Classes/RootViewController.m -------------------------------------------------------------------------------- /DetailView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/DetailView.xib -------------------------------------------------------------------------------- /Lisp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Lisp-Info.plist -------------------------------------------------------------------------------- /Lisp.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Lisp.cabal -------------------------------------------------------------------------------- /Lisp.xcodeproj/dpp.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Lisp.xcodeproj/dpp.mode1v3 -------------------------------------------------------------------------------- /Lisp.xcodeproj/dpp.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Lisp.xcodeproj/dpp.pbxuser -------------------------------------------------------------------------------- /Lisp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Lisp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Lisp_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Lisp_Prefix.pch -------------------------------------------------------------------------------- /Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/Main.hs -------------------------------------------------------------------------------- /MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/MainWindow.xib -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/README -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpp/LispHaskellIPad/HEAD/main.m --------------------------------------------------------------------------------