/usr/share/ruby-rouge/demos/cfscript is in ruby-rouge 2.2.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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;
}
}
|