_includes/code/hello.swift (7 lines of code) (raw):

func main(args: [String:Any]) -> [String:Any] { if let name = args["name"] as? String { return [ "greeting" : "Hello \(name)!" ] } else { return [ "greeting" : "Hello swif4!" ] } }