Tinderbox v10 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];