Package org.renjin

Examples of org.renjin.RenjinVersion


  }

  private void printGreeting() {
    PrintStream out = console.getOut();
    try {
      RenjinVersion renjin = new RenjinVersion();
      out.print("Renjin " + renjin.getVersionName() + "\n");
    } catch (IOException e) {
      out.print("Renjin\n");
    }

    out.print("Copyright (C) 2013 The R Foundation for Statistical Computing\n");
View Full Code Here


  }

  private void printGreeting() throws Exception {

    try {
      RenjinVersion renjin = new RenjinVersion();
      reader.println("Renjin " + renjin.getVersionName());
    } catch (IOException e) {
      reader.println("Renjin");
    }

    reader.println("Copyright (C) 2013 The R Foundation for Statistical Computing");
View Full Code Here

TOP

Related Classes of org.renjin.RenjinVersion

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.