Avatar
omochimetaru 1/15/2019 3:02 AM
Easily import third-party dependencies in your Swift scripts - mxcl/swift-sh
3:02 AM
#!/usr/bin/swift sh import PromiseKit // @mxcl ~> 6.5 firstly { after(.seconds(2)) }.then { after(.milliseconds(500)) }.done { print("notice: two and a half seconds elapsed") exit(0) } RunLoop.main.run()
3:02 AM
↑こんな感じでSwiftをスクリプト的に使えるやつだそうです、importのところの記法がオシャレだなと思った。