-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoWhile.fprg
22 lines (22 loc) · 987 Bytes
/
doWhile.fprg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<flowgorithm fileversion="4.2">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="veysel"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2024-08-06 02:24:15 ÖÖ"/>
<attribute name="created" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzAyOjIyOjIzIMOWw5Y7Mjg3Ng=="/>
<attribute name="edited" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzAyOjI0OjE1IMOWw5Y7MTsyOTg3"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="sayac" type="Integer" array="False" size=""/>
<assign variable="sayac" expression="1"/>
<do expression="sayac<=10">
<output expression=""sayi:" &sayac" newline="True"/>
<assign variable="sayac" expression="sayac+1"/>
</do>
</body>
</function>
</flowgorithm>