<cfscript>

	data = myFunc();

	dump(
		label = "Custom Tag Variables",
		var = variables
	);

	// ------------------------------------------------------------------------------- //
	// ------------------------------------------------------------------------------- //

	/**
	* I'm a locally-scoped function, available only within the Custom Tag page context.
	*/
	private string function myFunc() {

		return "Defined in the custom tag.";

	}

</cfscript>