├── .github └── PULL_REQUEST_TEMPLATE ├── .gitmodules ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── playgrounds.swift /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uraimo/Awesome-Swift-Playgrounds/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uraimo/Awesome-Swift-Playgrounds/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uraimo/Awesome-Swift-Playgrounds/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uraimo/Awesome-Swift-Playgrounds/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uraimo/Awesome-Swift-Playgrounds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uraimo/Awesome-Swift-Playgrounds/HEAD/README.md -------------------------------------------------------------------------------- /playgrounds.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | print("Hello from Awesome Swift Playgrounds!") 4 | --------------------------------------------------------------------------------