@fuzzyastrocat people have been misusing polygott repls for years. You're supposed to write your code in the entrypoint of any lang on the polygott github repo, then you have the run-project command run your code. If you open up a new polygott repl, you'll see that it says:
.PHONY: run
run:
run-project
You're supposed to choose a lang from the polygott repo, go to the .toml file and find the entrypoint file, write your code inside a new file that has that name, and use run-project to run it. Polygott is NOT a makefile repl.
I want to learn to use Polygott, but where do I start?
I feel like the title explains the whole question.
@fuzzyastrocat people have been misusing polygott repls for years. You're supposed to write your code in the entrypoint of any lang on the polygott github repo, then you have the
run-project
command run your code. If you open up a new polygott repl, you'll see that it says:You're supposed to choose a lang from the polygott repo, go to the
.toml
file and find the entrypoint file, write your code inside a new file that has that name, and userun-project
to run it. Polygott is NOT a makefile repl.