src/Pure/System/command_line.scala
changeset 71612 e0a5d6068141
parent 68806 4597812d5182
child 71632 c1bc38327bc2
equal deleted inserted replaced
71611:fb6953e77000 71612:e0a5d6068141
    34       }
    34       }
    35     sys.exit(rc)
    35     sys.exit(rc)
    36   }
    36   }
    37 
    37 
    38   def tool0(body: => Unit): Nothing = tool { body; 0 }
    38   def tool0(body: => Unit): Nothing = tool { body; 0 }
       
    39 
       
    40   def ML_tool0(body: List[String]): String =
       
    41     "Command_Line.tool0 (fn () => (" + body.mkString("; ") + "));"
    39 }
    42 }
    40