Logo

Programming-Idioms

  • Python
  • Rust

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)

def finish( name )
  puts "My job here is done. Goodbye #{name}"
end

Ruby methods always return something; in this case nil, the return value of puts
f = lambda: print('abc')
f()
def finish(name):
    print(f'My job here is done. Goodbye {name}')

Variable name inside curly braces will be replaced by its value. This is called "f-strings" introduced in Python version 3.6
fn finish(name: &str) {
    println!("My job here is done. Goodbye {}", name);
}

The actual return type is Unit, typed '()' and can be omitted from function signature.
procedure Finish (Name : String) is
begin
   Put_Line ("My job here is done. Goodbye " & Name);
end Finish;

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