The R Project SVN R

Rev

Rev 14948 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14948 Rev 38673
Line 9... Line 9...
9
 
9
 
10
 
10
 
11
int
11
int
12
main(int argc, char *argv[])
12
main(int argc, char *argv[])
13
{
13
{
14
  /* Evaluates the expression 
14
    /* Evaluates the expression 
15
       plot(c(1,2,3,4,5,6,7,8,9,10))
15
       plot(c(1,2,3,4,5,6,7,8,9,10))
16
   */
16
    */
17
  eval_R_command("plot", argc, argv); 
17
    eval_R_command("plot", argc, argv); 
18
  return(0);
18
    return(0);
19
}
19
}
20
 
20