diff options
author | elioat <elioat@tilde.institute> | 2022-12-08 16:16:37 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2022-12-08 16:16:37 -0500 |
commit | 81c20cfab1b424ae76223d18b81c58ff799573a0 (patch) | |
tree | 822fc4f93e1be65a36d1832ecb0a6ee9908fe209 | |
parent | 117f7f7c053269d2b6b24e55ab057aa7777c3d9f (diff) | |
download | december-2022-81c20cfab1b424ae76223d18b81c58ff799573a0.tar.gz |
Learning a bit about file i/o w/lil
-rw-r--r-- | src/tmp.lil | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tmp.lil b/src/tmp.lil index 3238b96..50f8467 100644 --- a/src/tmp.lil +++ b/src/tmp.lil @@ -35,6 +35,10 @@ l:insert name:"John" job:"Critic" age:32 into people show[l] +save:writecsv[l "sis" ","] # where sis formats the column type, here string integer string -- the other option is boolean. + +write["test.csv" save] + on cons x y do x,y end \ No newline at end of file |