Skip to content

Added in case statement functionality

nxe requested to merge case_statement into main

Created by: RosiePuddles

case(<expr>){
    # Any number of times, zero to infinity inclusive
    option(<expr>){
        <statement>
    }
    # optionally
    default{
        <statement>
    }
}

Can also be made silent end executed later on #27 (closed) Suggest later on adding in functionality to create a case statement and not run it, possible using a keyword like mute, and option statements can then be added later on in the script, and then execute the case statement later on. This pull request deals with issues #12 (closed), #20 (closed), #27 (closed)

Merge request reports