Skip to content

Commit 90a1a7c

Browse files
authored
Update README.md
1 parent 4748222 commit 90a1a7c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,23 @@ drawFlowchartFromUrl(fprgUrl,tagId,options);
2929
<script src="lib/jquery-3.3.1.min.js"></script>
3030
<script src="flowgorithm.js"></script>
3131
<script>
32-
var xml = '<?xml version="1.0"?>
33-
<flowgorithm fileversion="2.6">
34-
<attributes>
32+
var xml = `<?xml version="1.0"?>
33+
<flowgorithm fileversion="2.6">
34+
<attributes>
3535
<attribute name="name" value="Next number"/>
3636
<attribute name="authors" value="Andrea Vallorani"/>
3737
<attribute name="about" value="Print the next of a given number"/>
38-
</attributes>
39-
<function name="Main" type="None" variable="">
38+
</attributes>
39+
<function name="Main" type="None" variable="">
4040
<parameters/>
4141
<body>
42-
<declare name="N, NEXT" type="Integer" array="False" size=""/>
43-
<input variable="N"/>
44-
<assign variable="NEXT" expression="N+1"/>
45-
<output expression="&quot;Next is &quot; &amp; NEXT"/>
42+
<declare name="N, NEXT" type="Integer" array="False" size=""/>
43+
<input variable="N"/>
44+
<assign variable="NEXT" expression="N+1"/>
45+
<output expression="&quot;Next is &quot; &amp; NEXT"/>
4646
</body>
47-
</function>
48-
</flowgorithm>';
47+
</function>
48+
</flowgorithm>`;
4949
drawFlowchartFromSource(xml,'#f');
5050
</script>
5151
</head>

0 commit comments

Comments
 (0)