Tag Archives: Swift tutorials

Swift programming for Beginners – Swift Characters and Strings

(Swift for Beginners) Swift Characters and Strings In this tutorial, you will learn about characters and strings usage in Swift. You’ll also learn different operations that can be performed on strings and characters. What is a character? A character is a single symbol (letter, number, etc.). Character in swift are of Character type and is declared as: …

Swift programming for Beginners – Swift Variables, Constants and Literals

(Swift for Beginners) Swift Variables, Constants and Literals   In this article, you will learn about variables, constants, literals and their use cases in Swift programming. What is a Variable? In programming, variables are used to store data in memory which can be used throughout the program. Each variable must be given a unique name …

Swift programming for Beginners – Swift “Hello World” Program

(Swift for Beginners) Swift “Hello World” Program In this article, you will dive into Swift programming by writing a “Hello, World!” program. You’ll learn the basic syntax for a working Swift program. A “Hello, World!” is a computer program that is often used to illustrate the basic syntax of a programming language with a working …