Yeah, hi, I have seen that nobody has uploaded a tutorial on this, even if it is not very complicated, how to use Luvit in Replit...
First, install in your repl (use the shell) the Luvit unix script
curl -L https://github.com/luvit/lit/raw/master/get-lit.sh | sh
Now, this import the 3 luvit binaries in root, we will put it in a .bin/ folder.
.bin/
We will also give you some integration using the .replit file. Let's set the run button:
.replit
run="bin/luvit main.lua" # you can replace main.lua for your main file
...And that's it! we can use Luvit in Replit
"...we will put it in a .bin/ folder" should read "we will put it in a ./bin/ folder"
Run Luvit in Replit 🌙
Yeah, hi, I have seen that nobody has uploaded a tutorial on this, even if it is not very complicated, how to use Luvit in Replit...
First, install in your repl (use the shell) the Luvit unix script
Now, this import the 3 luvit binaries in root, we will put it in a
.bin/
folder.We will also give you some integration using the
.replit
file. Let's set the run button:...And that's it! we can use Luvit in Replit
"...we will put it in a .bin/ folder" should read "we will put it in a ./bin/ folder"