This version is out of date, covering development from v9.5.0 to v9.7.3. It is maintained here only for inbound reference links from elsewhere. It is no longer actively updated.

Jump to the current version of aTbRef

Tinderbox v9 Icon

Double forward slash: action code comments

Action code allows commenting in code, by using a // double forward slash. Here the second line of code is a comment and ignored when the action is run. Only lines #1 and #3 are evaluated as expressions.

	$MyList = [ant;bee;cow];
	// now set MyString to the second item in MyList
	$MyString = $MyList[1];