This page is part of a static HTML representation of the TiddlyWiki at https://tiddlywiki.com/

Procedure Parameter Handling

 19th April 2023 at 10:31am

Introduction

Procedure parameters are made available as variables when the procedure contents are wikified.

Accessing Parameters as Variables

When procedures are wikified, the parameters can be accessed as variables.

For example:

\procedure say-hi(name,address)
Hi, I'm <<name>> and I live in <<address>>.
\end

<<say-hi name:"Bugs" address:"Rabbit Hole Hill">>

That renders as:

Hi, I'm Bugs and I live in Rabbit Hole Hill.

Accessing parameters as variables only works in procedures that are wikified and not, for example, when a procedure is used as an attribute value.