Learn about four types of Recipes: Command, Procedure, Subject, and Action.
Tutorial
| time | section |
|---|---|
| 00:00 | Intro |
| 00:53 | Command |
| 01:32 | Procedure |
| 03:20 | Call other Recipes |
| 05:23 | Pipe mode |
| 07:07 | Pipe mode example |
| 09:48 | Subject |
| 11:59 | Action |
Recipes
Procedure
- Signature
- Greet
- Arguments
- message
- Callback
alert(message)
Command
- Name
- Say Hello
- Callback
this.api.Greet('Hello'))
Subject
- Name
- Salutation
- Output Type
- String
- Callback
return 'Yo'
Action
- Name
- Shout
- Input Types
- String
- Arguments
- message
- Callback
alert(message.toUpperCase())
Part of Cooking with Launchlet.