1
0
Fork 0
forked from fun/fun

Holiday is over, now I have fun again. No code changes. (0.38.11)

This commit is contained in:
Johannes Findeisen 2026-02-18 18:11:21 +01:00
commit 15082bdc3e
9 changed files with 78 additions and 78 deletions

View file

@ -2,21 +2,21 @@
Answers to common questions.
## I built Fun but includes arent found
Set `FUN_LIB_DIR` to the repositorys `./lib` directory when running without installation:
## 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`.
See [includes.md](./includes.md).
## How do I start the REPL?
Run `fun -i` (or run `fun` without a script, depending on version). See `docs/repl.md`.
Run `fun -i` (or run `fun` without a script, depending on version). See [repl.md](./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`.
Use the aggregate `build` target to build `fun`, `fun_test`, and `test_opcodes`. See [build.md](./build.md).
## Where are the standard libraries?
Under `./lib/`. See `docs/stdlib.md` for an overview.
Under [`./lib/`](../lib/). See [stdlib.md](./stdlib.md) for an overview.
## Where can I find internals and opcodes?
Browse `src/vm/` and `docs/internals.md` / `docs/opcodes.md`.
Browse [src/vm](../src/vm/) and [internals.md](./internals.md) / [opcodes.md](./opcodes.md).