diff options
| author | Bohdan Shtepan <winsatana@ya.ru> | 2016-04-05 20:27:09 +0300 | 
|---|---|---|
| committer | Bohdan Shtepan <winsatana@ya.ru> | 2016-04-05 20:27:09 +0300 | 
| commit | 8abfffd183d34c6b76dd117351a879e8b093f8c1 (patch) | |
| tree | 2ded23445aff1b22c53078e13efc7054ce8fddde /coldfusion.html.markdown | |
| parent | aad2d2b6f2e44f7647d0512dea263029c1d4d1fa (diff) | |
| parent | 8ddf7b5178524ab84f9e59b3e9d48343805d8ca0 (diff) | |
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'coldfusion.html.markdown')
| -rw-r--r-- | coldfusion.html.markdown | 50 | 
1 files changed, 24 insertions, 26 deletions
| diff --git a/coldfusion.html.markdown b/coldfusion.html.markdown index d49ad254..482612fe 100644 --- a/coldfusion.html.markdown +++ b/coldfusion.html.markdown @@ -233,40 +233,38 @@ ColdFusion started as a tag-based language. Almost all functionality is availabl  <em>Code for reference (Functions must return something to support IE)</em> -<pre> -<cfcomponent> -	<cfset this.hello = "Hello" /> -	<cfset this.world = "world" /> - -	<cffunction name="sayHello"> -		<cfreturn this.hello & ", " & this.world & "!" /> -	</cffunction> +<cfcomponent> +	<cfset this.hello = "Hello" /> +	<cfset this.world = "world" /> + +	<cffunction name="sayHello"> +		<cfreturn this.hello & ", " & this.world & "!" /> +	</cffunction> -	<cffunction name="setHello"> -		<cfargument name="newHello" type="string" required="true" /> +	<cffunction name="setHello"> +		<cfargument name="newHello" type="string" required="true" /> -		<cfset this.hello = arguments.newHello /> +		<cfset this.hello = arguments.newHello /> -		<cfreturn true /> -	</cffunction> +		<cfreturn true /> +	</cffunction> -	<cffunction name="setWorld"> -		<cfargument name="newWorld" type="string" required="true" /> +	<cffunction name="setWorld"> +		<cfargument name="newWorld" type="string" required="true" /> -		<cfset this.world = arguments.newWorld /> +		<cfset this.world = arguments.newWorld /> -		<cfreturn true /> -	</cffunction> +		<cfreturn true /> +	</cffunction> -	<cffunction name="getHello"> -		<cfreturn this.hello /> -	</cffunction> +	<cffunction name="getHello"> +		<cfreturn this.hello /> +	</cffunction> -	<cffunction name="getWorld"> -		<cfreturn this.world /> -	</cffunction> -</cfcomponent> -</pre> +	<cffunction name="getWorld"> +		<cfreturn this.world /> +	</cffunction> +</cfcomponent>  <cfset this.hello = "Hello" />  <cfset this.world = "world" /> | 
