-- | Program Flow Control module CsoundExpr.Opcodes.Control.Pgmctl (else', endif) where import CsoundExpr.Base.Types import CsoundExpr.Base.MultiOut import CsoundExpr.Base.SideEffect import CsoundExpr.Base.UserDefined -- | * opcode : else -- -- -- * syntax : -- -- > else -- -- -- * description : -- -- Executes a block of code when an "if...then" condition is false. -- -- -- * url : else' :: SignalOut else' = outOpcode "else" args where args = [] -- | * opcode : endif -- -- -- * syntax : -- -- > endif -- -- -- * description : -- -- Closes a block of code that begins with an "if...then" -- statement. -- -- -- * url : endif :: SignalOut endif = outOpcode "endif" args where args = []