Mercurial > repos > greg > r_hello_world
comparison hello_world.R @ 1:65fb665f37e3 draft
Uploaded
author | greg |
---|---|
date | Mon, 15 Aug 2016 13:56:03 -0400 |
parents | 304377330941 |
children | fa71365e68b6 |
comparison
equal
deleted
inserted
replaced
0:304377330941 | 1:65fb665f37e3 |
---|---|
5 | 5 |
6 option_list <- list( | 6 option_list <- list( |
7 make_option(c("-o", "--output"), action="store", help="Output dataset") | 7 make_option(c("-o", "--output"), action="store", help="Output dataset") |
8 ) | 8 ) |
9 | 9 |
10 line<-"Hello World" | 10 base::save("Hello world!", file=opt$output) |
11 base::save(line, file=opt$output) | |
12 | 11 |