Skip to content

Instantly share code, notes, and snippets.

View pbardea's full-sized avatar
✌️

Paul Bardea pbardea

✌️
View GitHub Profile

Keybase proof

I hereby claim:

  • I am pbardea on github.
  • I am pbardea (https://keybase.io/pbardea) on keybase.
  • I have a public key ASAl-8w3nFOqJg4ejZhDKeOqDTDq-OeuEPyDdJXVBx-UwAo

To claim this, I am signing this object:

@pbardea
pbardea / SwiftIntro.swift
Last active April 16, 2016 04:48
An introduction to programming. In Swift.
// This is a comment. The computer will ignore everything after a double slash.
// ---- Hello World ----
print("Hello world!")
var numPlanetsInSolarSystem = 8
var floatVariableName = 4.3
// Integers
var five = 2 + 3