Test of RInside with R 3.6, Xcode 11 & Swift 5 on macOS Catalina
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
418 B

//
// ContentView.swift
// rin-test
//
// Created by hrbrmstr on 8/26/19.
// Copyright © 2019 Bob Rudis. All rights reserved.
//
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello World")
.frame(maxWidth: .infinity, maxHeight: .infinity)
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}