Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Swift iOS Programming for Kids

You're reading from   Swift iOS Programming for Kids Help your kids build simple and engaging applications with Swift 3.0

Arrow left icon
Product type Paperback
Published in Mar 2017
Publisher Packt
ISBN-13 9781787120747
Length 260 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Authors (2):
Arrow left icon
Steffen D. Sommer Steffen D. Sommer
Author Profile Icon Steffen D. Sommer
Steffen D. Sommer
Jim Campagno Jim Campagno
Author Profile Icon Jim Campagno
Jim Campagno
Arrow right icon
View More author details
Toc

A simple program without functions


Having an understanding of how our iPhone reads our code as a line by line recipe can help us understand the need for the concept of a function.

Let's imagine, for a moment, that we do not have any concept of functions when writing our code. Then, if we want to make a simple app that simulates the making of a pizza, we can write the following code:

print("Flattening the dough to form a round pizza ")
print("Adding some tomato sauce ")
print("Adding some mozzarella cheese ")
print("Adding some spicy pepperoni ")
print("Preparing the pizza in the oven ")
print("Done! Delicious pizza ready to be eaten ")

Tip

All related source code for this chapter can be found here: https://github.com/swift-book-projects/swift-3-programming-for-kids/tree/master/Chapter-6

When we run this application, it will simply output the simulation of making a pizza to the console:

How will we write our code if we want our program to make multiple pizzas? The first thing that comes to mind...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime