Swift REPL
June 27, 2014
swift
repl
apple
A Read-eval-print-loop (REPL) is a simple program that takes input and immediately gives user feedback. The new language from Apple, Swift comes complete with its own REPL shell. To use it follow these simple instructions in a terminal. This is assuming you already have Xcode6 installed.
$ sudo xcode-select -s /Applications/Xcode6-Beta2.app/Contents/Developer/ Change the path to point to the version of Xcode you have installed
$ xcrun swift
Now should be in Swift’s REPL and you can type commands that will be instantly executed.
$ var a = "hello"
$ println(a)
Happy REPL-ing!