// // ViewController.swift // KotlinNativeDemo // // Created by Jonas Franz on 02.04.18. // Copyright © 2018 Jonas Franz. All rights reserved. // import UIKit import KotlinDemoFramework class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() print(KDFPlatform().platform()) // Do any additional setup after loading the view, typically from a nib. } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } }