nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/demos/cfscript
Nico Jensen b59a203dbb Init
Init commit
2019-03-12 13:49:49 +01:00

18 lines
No EOL
357 B
Text

component accessors="true" {
property type="string" name="firstName" default="";
property string username;
function init(){
return this;
}
public any function submitOrder( required product, coupon="", boolean results=true ){
var foo = function( required string baz, x=true, y=false ){
return "bar!";
};
return foo;
}
}