Course Content
Flowgorithm Features
Flowgorithm Features
0/1
Flowgorithm User Interface
Flowgorithm User Interface
0/3
Flowgorithm Flowchart Shapes
Flowgorithm Flowchart Shapes
0/1
Flowgorithm Data Types
Flowgorithm Data Types
0/1
Flowgorithm Comments
Flowgorithm Comments
0/1
Flowgorithm Numbers
Flowgorithm Numbers
0/1
Flowgorithm Strings
Flowgorithm Strings
0/1
Flowgorithm File Format
Flowgorithm File Format
0/1
Flowgorithm Program Attributes
Flowgorithm Program Attributes
0/1
IPO Chart
IPO Chart ( Input, Process and Output Chart )
0/2
First Flowgorithm Flowchart
First Flowgorithm Flowchart
0/2
Add Two Numbers Flowchart
Add Two Numbers Flowchart
0/2
Flowgorithm Quiz
Flowgorithm Quiz
0/1
Flowgorithm Beginner Exercises
Flowgorithm Beginner Exercises
0/1
Flowgorithm Beginner Course
About Lesson

File Extension

Flowgorithm source files have *.fprg file extensions. We can edit the *.fprg source file directly with text editors.

File Format

The Flowgorithm source files have an XML( eXtensible Markup Language ) structure. XML is a standard way of encoding data for processing and exchange across applications on the Web.

If you open the .fprg file in a text or XML editor, you find the format in XML.  Sample Hello World Flowchart XML file format under the hood:

<?xml version=”1.0″?>
<flowgorithm fileversion=”3.2″>
<attributes>
<attribute name=”name” value=””/>
<attribute name=”authors” value=”TestingDocs”/>
<attribute name=”about” value=””/>
<attribute name=”saved” value=”2020-05-31 10:34:47 PM”/>
<attribute name=”created” value=”VkNjg1″/>
<attribute name=”edited” value=”Vk3OTU=”/>
</attributes>
<function name=”Main” type=”None” variable=””>
<parameters/>
<body>
<comment text=”Hello World Flowchart”/>
<output expression=”&quot;Hello, World!&quot;” newline=”True”/>
</body>
</function>
</flowgorithm>