aieng_template.foo module¶ foo module. foo(bar)[source]¶ Return input concatenated with ‘foo’. Parameters: bar (str) – Input string to be concatenated with ‘foo’. Returns: Concatenated string. Return type: str Examples >>> foo("bar") 'foobar' >>> foo("baz") 'foobaz'