Skip to content

Instantly share code, notes, and snippets.

@eneko
Created July 1, 2015 04:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eneko/fb4f021158433a15ed2e to your computer and use it in GitHub Desktop.
Save eneko/fb4f021158433a15ed2e to your computer and use it in GitHub Desktop.
Swift scripting and compiling
$ chmod 755 hello.swift
$ ./hello.swift
Hello world!
$ swiftc hello.swift
$ ./hello
Hello world!
$
#!/usr/bin/env swift
println("Hello world!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment