Guest User

Untitled

a guest
Jun 14th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. extern class SpeechRecognizer
  2. {
  3.  public function new( str:String, num:Int ):Void;
  4.  
  5. }
  6.  
  7. /**
  8.  * ...
  9.  * @author M. Ivanchev
  10.  */
  11.  
  12. class Main
  13. {
  14.  
  15.  static function main()
  16.  {
  17.   var sp = new SpeechRecognizer( "senior", 5 );
  18.  }
  19.  
  20. }
Add Comment
Please, Sign In to add comment