Flowcharts, runnable in your browser!
- simple and fast flowchart editor
- run program inside your browser, locally
- export program into JSON
- readonly mode for documentation/tutorials
- predefined functions
- precise error reporting
Integer
- whole numberReal
- decimal numberString
- textBoolean
- true/falseInteger[]
- array ofInteger
sReal[]
- array ofReal
sString[]
- array ofString
sBoolean[]
- array ofBoolean
sInteger[][]
- matrix ofInteger
sReal[][]
- matrix ofReal
sString[][]
- matrix ofString
sBoolean[][]
- matrix ofBoolean
s
+
,-
,*
,/
,%
for arithmetic operations&&
,||
,!
for boolean operations<
,<=
,==
,!=
,>
,>=
for comparing numbers==
,!=
for comparing non-numeric values
The rules of precedence should be familiar to you from mathematics.
For example:
*
has higher precedence than+
:
2 + 2 * 2
==2 + 4
==6
.&&
has higher precedence than||
:
true || false && true
==true || false
==true
.
You can define new functions and use them from your main
function.
Functions have a return type, the type of value which it returns.
For example, if you calculate a sum of two Integer
s, the result would also be an Integer
(return type).
The return type can also be Void
, which means it doesn't return anything, it just executes and that's it.
For example, it could calculate something, print it and exit.
There are also some predefined functions that you can use, they are defined automatically in FlowRun.
You can find them here
Written in ScalaJS.
Uses d3-graphviz to display the flowcharts.