mirror of
https://github.com/rstacruz/cheatsheets.git
synced 2026-04-27 03:00:45 -04:00
292 B
292 B
title, layout
| title | layout |
|---|---|
| Flow | default |
Simple failing example
/* @flow */
function foo(x) { return x * 10; }
foo('Hello, world!');
Annotations
// Simple
function foo(x: string, y: number): string { ... }
// Arrays
function total(numbers: Array<number>) { ... }