4.4. Comments in WMLScript
There are two types of comments in WMLScript: single-line comment and multi-line comment. To add a single-line comment, begin a line of text with the // characters. To add a multi-line comment, enclose the text within /* and */. These rules are the same in WMLScript, JavaScript, Java, and C++. The WMLScript engine will ignore all comments. The following WMLScript example demonstrates the use of comments:
extern
function helloWorld()
{
// This is a single-line
comment.
/* This is a
multi-line comment. */
/*
A multi-line comment can be placed on a single line.
*/
WMLBrowser.setVar("message", "Hello
World. Welcome to our WMLScript tutorial.");
WMLBrowser.refresh();
// A comment can be placed at a statement's end.
}
Previous Page | Page 5 of 71 | Next Page |
Contents at a Glance (Click Here for Full Table of Contents)
- 1. WMLScript Introduction
- 2. Hello World WMLScript Example
- 3. Compiling WMLScript Code
- 4. WMLScript Language Rules
- 5. Defining WMLScript Functions
- 6. Calling WMLScript Functions
- 7. WMLScript Variables
- 8. WMLScript Data Types
- 9. WMLScript Variables Vs WML Variables
- 10. Passing Arguments to Functions By Value and By Reference
- 11. WMLScript Operators
- 12. WMLScript Conditional Statements
- 13. WMLScript Looping Statements
- 14. WMLScript Standard Libraries Overview
- 15. WMLScript WMLBrowser Standard Library
- 16. WMLScript Dialogs Standard Library
- 17. WMLScript String Standard Library
- 18. WMLScript Float Standard Library
- 19. WMLScript Lang Standard Library
- 20. WMLScript URL Standard Library
- 21. WMLScript Example: Validating Form Data