Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Swift 2.0 Basics An Introduction to Swift Programming Variables

Do I need to double space whenever I'm writing code? Or is it just to make things clean?

Is it required or is it just preference?

2 Answers

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Evan,

Swift doesn't really care about whitespace, so yes, it is just a preference among most programmers. It just makes the code easier to read if you're skimming through it. Not everything is double-spaced, but that would be up to you. Group certain things... space out others. Basically whatever makes reading it easier. Imagine you wrote some code and then you go back to look at it months later... those spaces are going to be really nice. :)

Keep Coding! :dizzy:

Florian Laplanche
Florian Laplanche
4,476 Points

Just like comments, spacing in general is not required but it allows for more neat and readable code.