diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-05-26 17:01:28 -0500 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2023-05-26 17:01:28 -0500 |
commit | 234279c36b363245c4a7316494641cd58b40ad28 (patch) | |
tree | 53ae804409268e9a77cc44acd02756f663070210 | |
parent | 1103dcfab38724e3fc29ec91f7ec06064b930bb4 (diff) |
Uptated R source file to display correctly on the terminal.
-rw-r--r-- | source_file.r | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source_file.r b/source_file.r index 597a30c..bf041a6 100644 --- a/source_file.r +++ b/source_file.r @@ -1,3 +1,3 @@ msg <- "hello world" -print(msg) +cat(msg, '\n') |