Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go

Idiom #3 Create a procedure

Like a function which doesn't return any value, thus has only side effects (e.g. Print to standard output)

import "fmt"
finish := func(name string) {
	fmt.Println("My job here is done. Good bye " + name)
}

This is a closure.

finish is a variable of type func(string).
import "fmt"
func finish(name string) {
  fmt.Println("My job here is done. Good bye " + name)
}

There is no return type in the signature, before the { .
procedure Finish (Name : String) is
begin
   Put_Line ("My job here is done. Goodbye " & Name);
end Finish;

New implementation...
< >
programming-idioms.org