Takuya71 のぶろぐ

外資系ソフトウェア会社で働いてます、認定スクラムマスター

swift repl

Xcode 6 beta5 のリリースノートを見ていて
REPL の記述を発見。

コンソール上で

> sudo xcode-select -switch /Applications/Xcode6-Beta.app/Contents/Developer

をやってから

> xcrun swift 
Welcome to Swift!  Type :help for assistance.
  1>
  1> var str = "Hello world"
str: String = "Hello world"
  2> println(str)
Hello world

Playground も便利ですが、 REPLも便利ですね!

REPL の終了は

:quit