// JustinOroz.swift

// Clickable code!

class Person {

var name: String

var about = About()

var skills = [String]()

var projects: Projects?

var social = [String: String]()

init (_ name: String) {

self.name = name

}

}


let justin = Person("Justin")

justin.about.me = "Electrical Engineering Graduate, Embedded Software Developer, Indie iOS Developer"

justin.skills = ["C++","C","Linux","Swift","Java"]

justin.projects = Projects()

justin.social = ["email": "justin.oroz@me.com",

"facebook": "Juice805",

"github": "Juice805",

"linkedin": "Justin Oroz",

"stack overflow": "Justin Oroz",

"steam": "Juice"]


Website.home = justin

Updated July 27th, 2017