John Smith
john@example.com
fn increment(@x) {
return x + 1
}
fn add(@x, delta) {
return x + delta
two = increment(1)
three = add(1, delta: 2)