1 2 3 4 5 6
-module(matching_function). -export([number/1]). number(one) -> 1; number(two) -> 2; number(three) -> 3.