import javasci.* ; 


class  Exemple4 {

  public static void main(String[] args) 
  {
    SciString S1 = new SciString("Sentence","Who is the best ?");
    S1.Send();
    
    S1.disp();
    
    SciString S2 = new SciString("Sentence2",S1);

    Scilab.Exec("Sentence2=''Scilab is the best.'';");
    S2.disp();


    
  }
}

