File: hello.c

package info (click to toggle)
r-cran-rinside 0.2.19-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 668 kB
  • sloc: cpp: 3,310; ansic: 117; xml: 57; ruby: 34; makefile: 2
file content (7 lines) | stat: -rw-r--r-- 121 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
#include <RInside_C.h>

int main() {
    setupRinC();
    evalQuietlyInR("print('Hello, World')");
    teardownRinC();
}