When I create a text file with delimeter "\" and vim into it the
backslash is replaced with caret notation null-type (^@), i.e.
q)`:astxt.txt 0:enlist "000\000\000\000" q)\\ user@host$vim astxt.txt
000^@^@^@ so I think the "\000" is q interpreting th...
I have made the following text file: user@host:~$ vim text.txt
first\last\age simon\says\40 michael\jordan\20 peter\pan\65 and when I
read it in a q session it reads as: q)read0 `:text.txt
"first\\last\\age" "simon\\says\\40" "michael\\jordan\\20"
"p...