I can't get the results of executing `curl https://swift.org/download/` Here is my code: ```swift import Process let result = Process.exec("curl https://swift.org/download/") print(result.stdout) ```