About

About.playground

import UIKit

// TODO: Tell something about yourself and project

private let website = "forceUnwrap.com"
private let about = "this blog is about Swift, codestyle and everything related."
private let expectation = """
I hope this will help all of us to become better developers and improve our code readability.
"""

private var greeting = "Hello, playground"

greeting = "Hello world!"

print(greeting)
print(website + " - " + about)
print(expectation)

Output:

Hello world!
forceUnwrap.com - this blog is about Swift, codestyle and everything related.
I hope this will help all of us to become better developers and improve our code readability.