================================================================================ Basic commenting ------------------------------ // This line should be blank One two//three // This should // be blank //This should be blank // /// Hello ------------------------------ One two ------------------------------ ================================================================================ Escapes ------------------------------ \// This line is not commented out /\/ This line is not commented out ------------------------------ \// This line is not commented out /\/ This line is not commented out ------------------------------ ================================================================================ Commenting out variables ------------------------------ $$name = {Fred} //$$name{} $$name{} //$$name = {Chris} $$name{} ------------------------------ Fred Fred ------------------------------ ================================================================================ Commenting out $$If statements ------------------------------ $$IfNever{} Hello $$EndIf{} //$$IfNever{} Hello $$EndIf{} ------------------------------ Hello ------------------------------ ================================================================================ Commenting out part of an invocation ------------------------------ $$name = {//Fred Bob } $$name{} ------------------------------ Bob ------------------------------ ================================================================================