07-mapok
Structure
fn · h1main
comment
bind
`kinds` = {apple: fruit, cucumber: vegetable}bind
`k` = [apple](`kinds`)call
> print text=`k`bind
`k` = [cucumber](`kinds`)call
> print text=`k`Functions
Variables
-
k textvegetablevegetable
-
kinds map · 2
apple fruit cucumber vegetable key value apple fruit cucumber vegetable
Execution
fruit
vegetable
Source
--- title: Maps (horizontal tables) description: Multi-column tables are maps; link-index get --- # main A multi-column table with one data row is a map. Read values with `[key](map)`. `kinds` = | apple | cucumber | |-------|----------| | fruit | vegetable | **`k` = [apple](kinds)** > print text=`k` **`k` = [cucumber](kinds)** > print text=`k`
A multi-column table with one data row is a map. Read values with
[key](map).