This website requires JavaScript.
Explore
Help
Sign In
vieter-v
/
v
Watch
2
Star
0
Fork
You've already forked v
0
Code
Issues
Pull Requests
Releases
Activity
9b3b22d6b3
v
/
compiler
/
tests
/
repl
History
…
..
README.md
…
arr_decl.repl
…
conditional_blocks.repl
…
default_printing.repl
…
error.repl
…
error_nosave.repl
…
function.repl
…
interpolation.repl
…
multiple_decl.repl
…
multiple_println.repl
…
newlines.repl
…
nothing.repl
…
println.repl
…
repl_test.v
…
var_decl.repl
…
README.md
V REPL Tests Script
How to write a new test
Create a new file named
*.repl
Write the input to be given to REPL
Add
===output===
Write the output expected
Example :
a := 1 println(a) ===output=== 1