diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-06-17 20:31:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-17 20:31:25 -0500 |
commit | 66f7f3d839b1b2fb7afae2269f425c348fdd3498 (patch) | |
tree | d1749734adc8e1c0f09468c6f5b2cf38827ac467 | |
parent | 57d65d53751227f860077fee3ae924470bb9230b (diff) |
Update context_script.r
added comments
-rw-r--r-- | dialoguer/context_script.r | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dialoguer/context_script.r b/dialoguer/context_script.r index 0d51f7b..7c2f78a 100644 --- a/dialoguer/context_script.r +++ b/dialoguer/context_script.r @@ -60,6 +60,7 @@ send <- function(conn, data) { } # Add optional expect_data_type argument that will receive and convert data type as string +# should there be an expected data type arg that specifies a known data type? recv <- function(conn, silent = TRUE) { if (silent) { suppressWarnings(data <- readBin(conn, "raw", HEADER)) @@ -81,6 +82,7 @@ file_path <- recv(con) file_path <- convert_from_binary(file_path, "character") #load target file +# need to learn how to receive path as system argument. source(file_path) confirm <- TRUE |