blob: 62358336c1f59f533a0d088deee3f0b8bed49f1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<document>
<ontology name="python">
<struct name="code" root="true">
<field>
<childRef ref="block"/>
</field>
</struct>
<struct name="block" transparent="true">
<field>
<childRef ref="block"/>
<childRef ref="line"/>
</field>
<syntax>
<open>
<indent/>
</open>
<close>
<dedent/>
</close>
</syntax>
</struct>
<struct name="line" transparent="true">
<primitive type="string">
<syntax>
<close>
<newline/>
</close>
</syntax>
</primitive>
</struct>
</ontology>
<python:code>
<python:block>
<python:line>import random</python:line>
<python:line>import sys</python:line>
<python:line>for i in range(int(sys.argv[1])):</python:line>
<python:block>
<python:line>randomNumber = random.randint(1, i)</python:line>
<python:line>print("Generated a random number between 1 and {}." % i)</python:line>
<python:line>print("It is: {}" % randomNumber)</python:line>
<python:line>for k in range(randomNumber):</python:line>
<python:block>
<python:line>print(k)</python:line>
</python:block>
<python:line>print("Done with this number!")</python:line>
</python:block>
<python:line>print("Done.")</python:line>
</python:block>
</python:code>
</document>
|