Static Public Member Functions | |
| static void | main (String[] args) |
Definition at line 4 of file Exemple4.java.
| static void Exemple4::main | ( | String[] | args | ) | [inline, static] |
Definition at line 6 of file Exemple4.java.
References javasci::SciString::disp(), and SciString.
00007 { 00008 SciString S1 = new SciString("Sentence","Who is the best ?"); 00009 00010 S1.disp(); 00011 00012 SciString S2 = new SciString("Sentence2",S1); 00013 00014 Scilab.Exec("Sentence2='Scilab is the best.';"); 00015 S2.disp(); 00016 00017 SciString S3 = new SciString("Sentence2"); 00018 S3.disp(); 00019 00020 Scilab.Finish(); 00021 00022 }
Here is the call graph for this function:

1.5.1