1 2 import Baz; 3 4 public class Greeter { greetnull5 public static func greet(greeting: String, name: String, from: String) -> String { 6 return greeting + ", " + name + " (from " + from + ")"; 7 } 8 } 9