1
0
Fork 0
forked from fun/fun

Holiday is over, now I have fun again. No code changes. (0.38.11)

This commit is contained in:
Johannes Findeisen 2026-02-17 14:59:39 +01:00
commit eaf5f88dc0
4 changed files with 270 additions and 0 deletions

View file

@ -2,6 +2,13 @@
This guide shows how to create and use the most common Fun datatypes with practical examples. It focuses on arrays and maps, and also recaps numbers, floats, strings, booleans and nil so examples are selfcontained.
See also:
- [arrays.md](./arrays.md) — Deeper dive into array creation, indexing/slicing, iteration, and helpers.
- [strings.md](./strings.md) — Practical guide to string literals, concatenation, substr/find, split, and conversions.
- [maps.md](./maps.md) — Detailed guide to map construction, lookup/update, merging, and patterns.
- [numbers.md](./numbers.md) — Numbers vs floats, arithmetic, conversions, clamping, bitwise ops, and common patterns.
## Quick overview
- number: signed integer (use uclamp/sclamp for width handling)