02-functionok
Structure
Execution
Hello World!
Source
---
title: Functions and named calls
description: `#` defines functions; `>` calls; `-` lists parameter names
---
# main
Use `#` / `##` for functions. Parameters are bare `- name` lines under the heading.
Call with `>` and named args `param=value`:
> greet who=World
## greet
+ `who`
> print text=Hello `who`!
Use
#/##for functions. Parameters are bare- namelines under the heading.