Added some tests for slsbset module.

This commit is contained in:
Cédric Bonhomme 2016-04-13 08:25:27 +02:00
parent 655d211dc0
commit 0d6748e737
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
2 changed files with 78 additions and 1 deletions

View file

@ -152,4 +152,5 @@ if __name__ == "__main__":
# Point of entry in execution mode.
f = fibonacci()
for x in range(13):
print(next(f), end=' ') # 0 1 1 2 3 5 8 13 21 34 55 89 144
#print(next(f), end=' ') # 0 1 1 2 3 5 8 13 21 34 55 89 144
pass