diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-21 00:27:33 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-21 00:39:12 +0200 |
commit | 545591a696bdff73f68573c54a05ca70eb58032d (patch) | |
tree | 1975115fc262756f14988a23cd7eed414149a7c4 /tests/basics/string1.py | |
parent | 439542f70c4546568dca3f2539d503aa7a6ec05b (diff) | |
download | micropython-545591a696bdff73f68573c54a05ca70eb58032d.tar.gz micropython-545591a696bdff73f68573c54a05ca70eb58032d.zip |
Implement string multiplication.
Diffstat (limited to 'tests/basics/string1.py')
-rw-r--r-- | tests/basics/string1.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/basics/string1.py b/tests/basics/string1.py index 3fecf799be..40e766b594 100644 --- a/tests/basics/string1.py +++ b/tests/basics/string1.py @@ -8,6 +8,8 @@ print(x) print('123' + "456") +print('123' * 5) + # iter print(list('str')) |