created: 20221007132845007 modified: 20230419103154329 tags: Pragmas title: Pragma: \procedure type: text/vnd.tiddlywiki <<.from-version "5.3.0">> The ''\procedure'' [[pragma|Pragmas]] is used to [[define procedures|Procedure Definitions]]. It is a shortcut syntax for the SetVariableWidget with an implicit ParametersWidget. The usual form allows procedures to span multiple lines: ``` \procedure ([:],[:]...) \end [] ``` Note that the `\end` marker can optionally specify the name of the procedure to which it relates which allows procedure definitions to be nested. There is also a single line form for shorter procedures: ``` \define ([:],[:]...) ``` The first line of the definition specifies the procedure name and any parameters. Each parameter has a name and, optionally, a default value that is used if no value is supplied on a particular call to the procedure. The lines that follow contain the text of the procedure text (i.e. the snippet represented by the procedure name), until `\end` appears on a line by itself: For example: ``` \procedure sayhi(name:"Bugs Bunny") Hi, I'm <>. \end <> ``` Alternatively, the entire definition can be presented on a single line without an `\end` marker: ``` \procedure sayhi(name:"Bugs Bunny") Hi, I'm <>. ``` Procedure definitions can be nested by specifying the name of the procedure in the `\end` marker. For example: < \end actions <$button actions=<>> <> \end special-button <> """>>