You can use images:
Or links, inline-code
and multiline code:
$curry = fn(callable $fn, ...$first) => fn(...$second) => $fn(...$first, ...$second);
$add = fn($a, $b) => $a + $b;
$add5 = $curry($add, 5);
$sum = $add5(4); // 9
Lists
- of
- elements
Some quote
Link to sub readme
Table |
---|
first line |
second line |
third line |