Logo

Programming-Idioms

  • Java
  • Clojure

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)

(defn main- [& args]
  (println "I got all this arguments " args " and now I'm returning nil. Peace out!"))

The syntax "& args" in the arguments vector means this function can take any number of arguments.
interface F { void set(); }
F f = () -> out.println("abc");
f.set();
void f() { out.println("abc"); }
private void methodName() {
	System.out.println("Hello, World!");
}
void finish(String name){
  System.out.println("My job here is done. Goodbye " + name);
}

void means "no return value".
procedure Finish (Name : String) is
begin
   Put_Line ("My job here is done. Goodbye " & Name);
end Finish;

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