Skip to content

Commit 98b1497

Browse files
author
İSMAİL TAŞDELEN
committed
master
1 parent e8e8479 commit 98b1497

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

endless_loop.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/evy python
2+
# -*- coding:utf-8 -*-
3+
4+
## Python Code Example
5+
## Sonsuz
6+
7+
def function():
8+
value = 0.1
9+
wanted = 0.2
10+
while value < wanted:
11+
message = "Endless Loop ;)"
12+
print(message)
13+
14+
function()

0 commit comments

Comments
 (0)