I am trying to write a script with Swift (not an Xcode project). To be clear, the first line of my file is
#!/usr/bin/swift
And I am just
There's a better way!
#!/usr/bin/swift -frontend -interpret -enable-source-import -I.
import other_file // this imports other_file.swift in the same folder
funcFromOtherFile()
if you want to import files from ExampleFolder
it would be like:
#!/usr/bin/swift -frontend -interpret -enable-source-import -I./ExampleFolder
import other_file // this imports ./ExampleFolder/other_file.swift
funcFromOtherFile()