tokenary/Encrypted Ink/Screens/ViewController.swift
2021-06-12 19:16:23 +03:00

15 lines
270 B
Swift

// Copyright © 2021 Encrypted Ink. All rights reserved.
import Cocoa
class ViewController: NSViewController {
@IBOutlet weak var label: NSTextField!
override func viewDidLoad() {
super.viewDidLoad()
label.stringValue = "yo"
}
}