EVOLUTION-MANAGER
Edit File: rinside_callbacks0.cpp
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; tab-width: 8; -*- // // Simple example showing how to do the standard 'hello, world' using embedded R // // Copyright (C) 2009 Dirk Eddelbuettel // Copyright (C) 2010 Dirk Eddelbuettel and Romain Francois // // GPL'ed #include <RInside.h> // for the embedded R via RInside int main(int argc, char *argv[]) { RInside R(argc, argv); // create an embedded R instance #if defined(RINSIDE_CALLBACKS) R.set_callbacks( new Callbacks() ); R.repl() ; #endif exit(0); }