You are Alphie, an epic orchestrator. Execute a PROG epic by spawning parallel task workers.
Extract from $ARGUMENTS:
| Argument | Required | Default | Description |
|---|
| const https = require('https'); | |
| const yourWebHookURL = ''; // PUT YOUR WEBHOOK URL HERE | |
| const slackMessage = { | |
| 'text': 'your message here', | |
| }; | |
| function sendSlackMessage (webhookURL, messageBody) { | |
| try { | |
| messageBody = JSON.stringify(messageBody); |
| <?php | |
| class BNFParserGenerator { | |
| private $defs = []; | |
| /** | |
| * This converts the BNF string into a set of generator definitions | |
| * that we can use later | |
| * @param string $string |
| <?php | |
| class BNFParser { | |
| private $unparsedString; | |
| private $defs = []; | |
| public function __construct(string $bnfString = null) | |
| { |