本日AM2時より行われたWWDC2014で、
iOS/OS Xアプリ開発用の新言語『Swift』が発表されました!
開発者にとっては非常に衝撃的なニュースではないかと思います…。



僕自身これから勉強していくところですが、
触りの部分だけでも一緒に見てみましょう。
21
iBooksで公開されているSwiftガイドラインの冒頭部分です。

A Swift Tour

Tradition suggests that the first program in a new language should print the words “Hello, world” on the screen. In Swift, this can be done in a single line:

println("Hello, world")
If you have written code in C or Objective-C, this syntax looks familiar to you—in Swift, this line of code is a complete program. You don’t need to import a separate library for functionality like input/output or string handling. Code written at global scope is used as the entry point for the program, so you don’t need a main function. You also don’t need to write semicolons at the end of every statement.
抜粋:: Apple Inc. “The Swift Programming Language”。 iBooks. https://itunes.apple.com/jp/book/swift-programming-language/id881256329?mt=11


・和訳(大体の感じで)

A Swift Tour

新しい言語での初めてのプログラムでは、画面上に『Hello, world』と表示する伝統があります。
Swiftでは、以下の一行で実行できます。

println("Hello, world")

もしあなたが、CもしくはObjective-Cでコードを書いたことがあれば、この文法に見覚えがあるでしょう。
Swiftでは、この一行のコードだけで完全なプログラムとなります。
入力/出力や、文字列処理などの機能のために、別のライブラリをインポートする必要はありません。
コードはグローバルスコープで記述され、プログラムのエントリポイントとして使われているため、main関数は必要ありません
行の終わりにセミコロンを書く必要もありません


…といった感じで、わりと慣れるのに時間はかからなさそうな言語だと思います。
ガイドライン自体は、簡単な英語で書かれているのでぜひ読んでみてください。

ガイドラインはこちらから、iBookで読むことが可能です。
iPhone/iPadだけでなく、Macでも読めます。

細かい仕様については、こちらの方がまとめてくれています。
[iOS] 新言語SwiftがObjective-Cよりも良いところ
仕事が早いですね! (^_^;