Skip to content

Instantly share code, notes, and snippets.

@IsaAliev
Last active November 2, 2019 09:52
Show Gist options
  • Save IsaAliev/39c900bc64f4fa1d63698f5dfae3d640 to your computer and use it in GitHub Desktop.
Save IsaAliev/39c900bc64f4fa1d63698f5dfae3d640 to your computer and use it in GitHub Desktop.
import Foundation
class ViewModel {
var name: String?
var greeting: String?
func sayHello() {
greeting = "Hello, \(name ?? "")"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment