summaryrefslogtreecommitdiff
path: root/tests/examplefiles/exampleScript.cfc
blob: 1e8b2410b66e704b5c29091c0a18bbdec2e34486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
component {
	
	public any function init(arg1){
		var this.myVar = arg1;

		return this;
	}

	private void function testFunc(arg1){
		if(structKeyExists(arguments, "arg1")){
			writeoutput("Argument exists");
		}
	}

}