-
-
Notifications
You must be signed in to change notification settings - Fork 8
PipeScript should support conditional keywords #374
Copy link
Copy link
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
One of the ways that PowerShell can be overly verbose is in conditional syntax. This is especially true for simple scenarios, where only one thing is done in the "if" clause.
Consider this example:
if ($ThisIsTrue) {
continue
}We can rid ourselves of extra punctuation and make code more readable if we can write the same statement as:
continue if ($ThisIsTrue)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request