0 branches
Tree Top files
Code
Clone with HTTPS:
56 years ago
..
repl_test.v all: super_batch3 fixes last Apr 13 3.18 KB

V REPL Tests Script

How to write a new test

Notes

Keep in mind, that the way V repl works for now, every non empty line would cause a new recompilation of the entire repl content that was collected so far.

Longer REPL files would cause measurably longer recompilation/testing times.

Also, longer repl files would be slower to debug when they fail, It is better to have several smaller files vs one huge REPL file.

Example :

a := 1
println(a)
===output===
1