mirror of https://github.com/exaloop/codon.git
6 lines
72 B
Python
6 lines
72 B
Python
|
a = ['a', 'b', 'c']
|
||
|
|
||
|
@export
|
||
|
def foo(n: int):
|
||
|
print(''.join(a) * n)
|