Fonction rapide
// declare a function
func greet() {
print("Hello World!")
}
// call the function
greet()
print("Outside function")
SAMER SAEID
// declare a function
func greet() {
print("Hello World!")
}
// call the function
greet()
print("Outside function")
func functionName(parameters)-> returnType {
// function body
}