Have barrel which has two files:
// source/FooConversionWeight.mc
module Foo {
(:weight)
module Conversion {
module Weight {
function toLbs(kg) as Double {
return kg.toDouble() * 2.2046226218488d;
}
}
}
}
// source/FooConversionDistance...