--- language: ColdFusion contributors: - ["Wayne Boka", "http://wboka.github.io"] filename: LearnColdFusion.cfm --- ColdFusion is a scripting language for web development. [Read more here.](http://www.adobe.com/products/coldfusion-family.html) ```ColdFusion " ---> #myVariable#
#myNumber#

#1 + 1#
= 2 #10 - 8#
= 2 #1 * 2#
= 2 #10 / 5#
= 2 #12 % 5#
= 0
#1 eq 1#
#15 neq 1#
#10 gt 8#
#1 lt 2#
#10 gte 5#
#1 lte 5#

#myCondition# #myCondition#. Proceed Carefully!!! myCondition is unknown
#i#

``` ## Further Reading The links provided here below are just to get an understanding of the topic, feel free to Google and find specific examples.