├── .gitignore ├── EasyNXC ├── EasyNXC.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Package.swift ├── Sources │ └── EasyNXC │ │ └── EasyNXC.swift └── Tests │ └── EasyNXCTests │ └── EasyNXCTests.swift ├── NXT.playgroundbook └── Contents │ ├── Chapters │ └── NXT.playgroundchapter │ │ ├── Manifest.plist │ │ ├── Pages │ │ └── Get Started.playgroundpage │ │ │ ├── Contents.swift │ │ │ └── Manifest.plist │ │ └── Sources │ │ ├── EasyNXC.swift │ │ └── IntExtension.swift │ ├── Manifest.plist │ └── Resources │ └── banner.png ├── NXT.xcworkspace └── contents.xcworkspacedata ├── README.md └── Server ├── NXCBuild.playground ├── Contents.swift └── contents.xcplayground ├── Package.swift └── main.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/.gitignore -------------------------------------------------------------------------------- /EasyNXC/EasyNXC.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/EasyNXC/EasyNXC.playground/Contents.swift -------------------------------------------------------------------------------- /EasyNXC/EasyNXC.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/EasyNXC/EasyNXC.playground/contents.xcplayground -------------------------------------------------------------------------------- /EasyNXC/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/EasyNXC/Package.swift -------------------------------------------------------------------------------- /EasyNXC/Sources/EasyNXC/EasyNXC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/EasyNXC/Sources/EasyNXC/EasyNXC.swift -------------------------------------------------------------------------------- /EasyNXC/Tests/EasyNXCTests/EasyNXCTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/EasyNXC/Tests/EasyNXCTests/EasyNXCTests.swift -------------------------------------------------------------------------------- /NXT.playgroundbook/Contents/Chapters/NXT.playgroundchapter/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/NXT.playgroundbook/Contents/Chapters/NXT.playgroundchapter/Manifest.plist -------------------------------------------------------------------------------- /NXT.playgroundbook/Contents/Chapters/NXT.playgroundchapter/Pages/Get Started.playgroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/NXT.playgroundbook/Contents/Chapters/NXT.playgroundchapter/Pages/Get Started.playgroundpage/Contents.swift -------------------------------------------------------------------------------- /NXT.playgroundbook/Contents/Chapters/NXT.playgroundchapter/Pages/Get Started.playgroundpage/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/NXT.playgroundbook/Contents/Chapters/NXT.playgroundchapter/Pages/Get Started.playgroundpage/Manifest.plist -------------------------------------------------------------------------------- /NXT.playgroundbook/Contents/Chapters/NXT.playgroundchapter/Sources/EasyNXC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/NXT.playgroundbook/Contents/Chapters/NXT.playgroundchapter/Sources/EasyNXC.swift -------------------------------------------------------------------------------- /NXT.playgroundbook/Contents/Chapters/NXT.playgroundchapter/Sources/IntExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/NXT.playgroundbook/Contents/Chapters/NXT.playgroundchapter/Sources/IntExtension.swift -------------------------------------------------------------------------------- /NXT.playgroundbook/Contents/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/NXT.playgroundbook/Contents/Manifest.plist -------------------------------------------------------------------------------- /NXT.playgroundbook/Contents/Resources/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/NXT.playgroundbook/Contents/Resources/banner.png -------------------------------------------------------------------------------- /NXT.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/NXT.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/README.md -------------------------------------------------------------------------------- /Server/NXCBuild.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/Server/NXCBuild.playground/Contents.swift -------------------------------------------------------------------------------- /Server/NXCBuild.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/Server/NXCBuild.playground/contents.xcplayground -------------------------------------------------------------------------------- /Server/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/Server/Package.swift -------------------------------------------------------------------------------- /Server/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/mindstorms-nxt-playground-book/HEAD/Server/main.swift --------------------------------------------------------------------------------