Comments

You can add comments to your scripts.

This page discusses:

Single-Line Comment

  • On the client, single-line comments can be inserted into scripts using the "/" syntax:
    let a(Integer) // an Integer
    let result(Real)
    [...]
    // Let’s compute
    result = a * 2 
    Note: The Comment/Uncomment all contextual command is available in all EKL editors.

Others

The /* and */ comment characters are supported.

/* Set of Equations created by John 06/06/06 */