Skip to content

Instantly share code, notes, and snippets.

View ascolieri's full-sized avatar

Agustin Ivan Scolieri ascolieri

  • 19:06 (UTC -03:00)
View GitHub Profile

Keybase proof

I hereby claim:

  • I am ascolieri on github.
  • I am ascolieri (https://keybase.io/ascolieri) on keybase.
  • I have a public key ASC8ibWrzyDehxLtmvUBLJWQ31HFGS6hLSKUdAA_99vzlwo

To claim this, I am signing this object:

import Cocoa
var sum = 0
for number in 0...999 {
if number % 3 == 0 || number % 5 == 0 {
sum = sum + number
}
}
import Cocoa
class NamedOne {
var firstName : String{
didSet{
self.firstName + " " + self.lastName
}
}