#!/usr/bin/ruby

#
## https://rosettacode.org/wiki/Function_definition
#

func multiply(a, b) {
    a * b;
};