Functions
Functions in Ferret are created with func
.
func sayHello { say("Hello, World!") } sayHello() # Hello, World!
Functions in Ferret are created with func
.
func sayHello { say("Hello, World!") } sayHello() # Hello, World!