# This Python module defines some functions that support our tests

def multiply(a,b):
    return a*b;

def concat(a,b):
    return a+b;

def trivial(val):
    return val;

def trivial_v(val):
    print(val);
    return val;

