Has import changed in Hy version 1.0a4+199.g22021c56? I'm trying to import a file from the same folder (or cwd), but I get ModuleNotFoundError: No module named 'thenameofthefile'
Even if I append current path to sys.path.
This is how you can reproduce it.
#!/bin/sh
echo "(defn doit[] (print \"something\"))" > printsomething.hy
echo "(import printsomething [doit])" > callit.hy
echo "(doit printsomething)" >> callit.hy
hy callit.hy