RosettaCodeData/Task/Classes/Swift/classes-1.swift
2016-12-05 23:44:36 +01:00

19 lines
203 B
Swift

class MyClass{
// stored property
var variable : Int
/**
* The constructor
*/
init() {
self.variable = 42
}
/**
* A method
*/
func someMethod() {
self.variable = 1
}
}