Skip to content

Latest commit

 

History

History
executable file
·
13 lines (11 loc) · 189 Bytes

File metadata and controls

executable file
·
13 lines (11 loc) · 189 Bytes
func goodMorning() {
    print("good morning!")
}
    
func sayHello(name: String) {
    print("Hell0, \(name)!")
}
    
func sum(_ x: Int, _ y: Int) -> Int{
    return x + y
}