Holiday is over, now I have fun again. No code changes. (0.38.11)
This commit is contained in:
parent
bd2d619cb9
commit
f896e1d3bf
13 changed files with 329 additions and 0 deletions
22
docs/faq.md
Normal file
22
docs/faq.md
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# FAQ
|
||||
|
||||
Answers to common questions.
|
||||
|
||||
## I built Fun but includes aren’t found
|
||||
Set `FUN_LIB_DIR` to the repository’s `./lib` directory when running without installation:
|
||||
```
|
||||
FUN_LIB_DIR=./lib ./build_debug/fun examples/hello.fun
|
||||
```
|
||||
See `docs/includes.md`.
|
||||
|
||||
## How do I start the REPL?
|
||||
Run `fun -i` (or run `fun` without a script, depending on version). See `docs/repl.md`.
|
||||
|
||||
## Which build target should I use?
|
||||
Use the aggregate `build` target to build `fun`, `fun_test`, and `test_opcodes`. See `docs/build.md`.
|
||||
|
||||
## Where are the standard libraries?
|
||||
Under `./lib/`. See `docs/stdlib.md` for an overview.
|
||||
|
||||
## Where can I find internals and opcodes?
|
||||
Browse `src/vm/` and `docs/internals.md` / `docs/opcodes.md`.
|
||||
Loading…
Add table
Add a link
Reference in a new issue