Flow is a programming language created in 2014 by Avik Chaudhuri.
#121on PLDB | 10Years Old |
git clone https://github.com/facebook/flow
Javascript 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 |