Error: Use of unresolved Identifier 'Process'

后端 未结 1 1945
心在旅途
心在旅途 2020-12-11 01:57

OS: Ubuntu 16.04

Swift Version: 3.0 Preview 6

I\'m following this getting started page

In greeter.swift

func sayHello(na         


        
相关标签:
1条回答
  • 2020-12-11 02:01

    Process was changed to CommandLine in swift 3.0

    Try replacing Process with CommandLine


    Here is the link to the commit that changed it: Rename Process to CommandLine [SE-0086].

    0 讨论(0)
提交回复
热议问题