Comment
From UBot Studio
(Difference between revisions)
(Created page with "This command is a Flow Command. This command allows you to write comments within your code. == Example == <pre> navigate("bing.com", "Wait") comment("The s...") |
|||
Line 1: | Line 1: | ||
This command is a [[Flow Commands|Flow Command]]. This command allows you to write comments within your code. | This command is a [[Flow Commands|Flow Command]]. This command allows you to write comments within your code. | ||
+ | It is used for debugging and organizational purposes. | ||
+ | |||
== Example == | == Example == | ||
Line 8: | Line 10: | ||
navigate("http://www.google.com/", "Wait") | navigate("http://www.google.com/", "Wait") | ||
− | <pre> | + | </pre> |
The command does not affect how any of the commands are run. | The command does not affect how any of the commands are run. | ||
[[File:comment.png]] | [[File:comment.png]] |
Revision as of 15:17, 30 December 2012
This command is a Flow Command. This command allows you to write comments within your code. It is used for debugging and organizational purposes.
Example
navigate("bing.com", "Wait") comment("The second navigate command navigates to google.com") navigate("http://www.google.com/", "Wait")
The command does not affect how any of the commands are run.