v/tools/preludes
Delyan Angelov 0d93eeb3fe compiler: move prelude files to tools/preludes/ 2020-01-08 17:57:41 +01:00
..
README.md compiler: move prelude files to tools/preludes/ 2020-01-08 17:57:41 +01:00
live_main.v compiler: move prelude files to tools/preludes/ 2020-01-08 17:57:41 +01:00
live_shared.v compiler: move prelude files to tools/preludes/ 2020-01-08 17:57:41 +01:00
tests_assertions.v compiler: move prelude files to tools/preludes/ 2020-01-08 17:57:41 +01:00
tests_with_stats.v compiler: move prelude files to tools/preludes/ 2020-01-08 17:57:41 +01:00

README.md

V preludes:

The tools/preludes/ contains small v code snippets, that V uses when compiling certain v programs. V adds the files below automatically itself. Each file is used in different situations (see below).

NB: preludes are NOT intended to be used by user programs/modules. The folder tools/preludes/ is NOT a v module.

Details:

tools/preludes/live_main.v

Used when compiling live programs. This file is used by the main executable live program, that starts the file change monitoring thread. Each live program needs module os and module time, in order for the background file change monitoring thread to work properly.

tools/preludes/live_shared.v

Used when compiling live programs, for the shared library portion of the live programs, that is reloaded each time the code is changed.

tools/preludes/tests_assertions.v

Used when compiling _test.v programs. It specifies how failed assertions will look.

tools/preludes/tests_with_stats.v

Used when compiling _test.v programs with -stats option. It specifies how the result will appear ('assert' vs 'asserts' and so on).