tried the following with my both laptops:
have a subdir with script.kap file in it
]cd /home/user/.../subdir
Changed working directory to: /home/user/.../subdir
use("script.kap")
Error at: 1:1: Error loading file: script.kap: java.io.FileNotFoundException: script.kap (No such file or directory)
use("./script.kap")
Error at: 1:1: Error loading file: ./script.kap: java.io.FileNotFoundException: ./script.kap (No such file or directory)
however, I am able to do
"testing-dir" io:write "1 2 3 test"
and I will find testing-dir in subdir
tried the following with my both laptops:
have a subdir with script.kap file in it
```
]cd /home/user/.../subdir
Changed working directory to: /home/user/.../subdir
use("script.kap")
Error at: 1:1: Error loading file: script.kap: java.io.FileNotFoundException: script.kap (No such file or directory)
use("./script.kap")
Error at: 1:1: Error loading file: ./script.kap: java.io.FileNotFoundException: ./script.kap (No such file or directory)
```
however, I am able to do
```
"testing-dir" io:write "1 2 3 test"
```
and I will find testing-dir in subdir