diff options
author | geno <gabrigeno@gmail.com> | 2024-07-17 20:12:29 +0200 |
---|---|---|
committer | geno <gabrigeno@gmail.com> | 2024-07-17 20:12:47 +0200 |
commit | 635360137c14d785ccbea17d4a93f49418c8ca69 (patch) | |
tree | 085fc8531cdfcc9d42ddd61ad4e48174a3e0243b /test/2f.py | |
parent | 0f6ba6b9ae7781715fc90db8d261bbdaf6a6411b (diff) |
fixed: counter not incrementing if the operation is an atom
Diffstat (limited to 'test/2f.py')
-rw-r--r-- | test/2f.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/2f.py b/test/2f.py new file mode 100644 index 0000000..d83457b --- /dev/null +++ b/test/2f.py @@ -0,0 +1,10 @@ + +n = 6 +counter = 1 +result = 1 + +while n - 1 == counter: + result = result * counter + counter = counter - 1 + +print(result) |