Guest User

Untitled

a guest
Apr 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. package com.forairan.somecoolscript;
  2.  
  3. import com.forairan.lols.ScriptExecutor;
  4.  
  5. public class SomeCoolScript {
  6.     public static void main(String[] args) {
  7.         ScriptExecutor executor = new ScriptExecutor();
  8.         String script = "";
  9.         script += "lols cedar\n";
  10.         script += "\n";
  11.         script += "Run Cedar test suite:\n";
  12.         script += "    Run section: Embed\n";
  13.         executor.executeScript(script);
  14.     }
  15. }
Add Comment
Please, Sign In to add comment