!747

m {
  p {
    makeAndroid("Program runner.");
  }
  
  static synchronized S answer(S s) {
    new Matches m;
    
    if (match3("please run this program: *", s, m)) {
      print("Running " + m.m[0] + "...");
      callMain(hotwire(unquote(m.m[0])));
      return "ok";
    }
    
    return null;
  }
}