aieng_template.bar module

bar module.

bar(foo)[source]

Return input concatenated with ‘bar’.

Parameters:

foo (str) – Input string to be concatenated with ‘bar’.

Returns:

Concatenated string.

Return type:

str

Examples

>>> bar("foo")
'barfoo'
>>> bar("baz")
'barbaz'