Swift is a new programming language developed by Apple Inc for iOS and OS X development. Swift adopts the best of C and Objective-C, without the constraints of C compatibility.
Swift uses the same runtime as the existing Obj-C system on Mac OS and iOS which makes Swift programs run on many existing iOS 6 and OS X 10.8 platforms.
This blogspot is designed for software programmers with a need to understand the Swift programming language starting from scratch. This blogspot will give you enough understanding on Swift programming language from where you can take yourself to higher level of expertise.
Before proceeding with this post, you should have a basic understanding of Computer Programming terminologies. A basic understanding of any of the programming languages will help you in understanding the Swift programming concepts and move fast on the learning track.
import Cocoa
/* My first program in Swift */
var myString = "Hello, World!"
println(myString)
Swift uses the same runtime as the existing Obj-C system on Mac OS and iOS which makes Swift programs run on many existing iOS 6 and OS X 10.8 platforms.
This blogspot is designed for software programmers with a need to understand the Swift programming language starting from scratch. This blogspot will give you enough understanding on Swift programming language from where you can take yourself to higher level of expertise.
Before proceeding with this post, you should have a basic understanding of Computer Programming terminologies. A basic understanding of any of the programming languages will help you in understanding the Swift programming concepts and move fast on the learning track.
import Cocoa
/* My first program in Swift */
var myString = "Hello, World!"
println(myString)
If the answers is incorrect or not given, you can answer the above question in the comment box. If the answers is incorrect or not given, you can answer the above question in the comment box.