1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/tests/repl
2019-08-18 23:02:32 +03:00
..
arr_decl.repl
conditional_blocks.repl repl: functions and conditional blocks support 2019-08-18 22:50:38 +03:00
default_printing.repl tests: v implementation of repl tests 2019-08-18 19:26:55 +03:00
error_nosave.repl repl: dont save line if last compilation errored 2019-08-18 19:25:46 +03:00
error.repl repl: fix compiler/tests/repl/error.repl test case. 2019-08-18 17:24:02 +03:00
function.repl repl: functions and conditional blocks support 2019-08-18 22:50:38 +03:00
interpolation.repl
multiple_decl.repl
multiple_println.repl
newlines.repl
nothing.repl
println.repl
README.md
repl_test.v repl_test: remove dependance on echo, use stdin redirection instead. 2019-08-18 23:02:32 +03:00
var_decl.repl

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