Flow is a programming language created in 2014 by Avik Chaudhuri.
| #126on PLDB | 12Years Old |
git clone https://github.com/facebook/flowJavascript with static type checking.
// @flow
function square(n: number): number {
return n * n;
}
square("2"); // Error!| Feature | Supported | Example | Token |
|---|---|---|---|
| Comments | ✓ | // A comment | |
| Line Comments | ✓ | // A comment | // |
| Semantic Indentation | X |