Sha256: b6f6762b5fe2c5c0c062fd6aa7f5d970372aa2ee78545fc8398c4063bf24246a
Contents?: true
Size: 891 Bytes
Versions: 42
Compression:
Stored size: 891 Bytes
Contents
R version 2.9.2 (2009-08-24) Copyright (C) 2009 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. [R.app GUI 1.29 (5464) i386-apple-darwin8.11.1] > x <- function {} Error: syntax error > x <- function() {} > x <- function() { + cat("hello") + cat("world") + } > x function() { cat("hello") cat("world") } > x() helloworld > 2 + 2 [1] 4 >
Version data entries
42 entries across 42 versions & 5 rubygems