1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/tests/repl
2019-09-03 18:42:40 +03:00
..
.gitattributes os: fix exec() and get_raw_line(); fix Windows tests and examples 2019-08-26 13:51:48 +03:00
arr_decl.repl
chained_fields.repl parser: fix mutability with chained fields 2019-08-30 20:19:06 +03:00
conditional_blocks.repl repl: functions and conditional blocks support 2019-08-18 22:50:38 +03:00
default_printing.repl
error_nosave.repl compiler: produce errors in C "filepath:line:column:" format 2019-08-22 14:15:11 +03:00
error.repl compiler: produce errors in C "filepath:line:column:" format 2019-08-22 14:15:11 +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
naked_strings.repl Fix incorrect string open/close check in REPL 2019-08-29 21:40:49 +03:00
newlines.repl
nothing.repl
println.repl
README.md
repl_test.v compiler: fix repl chained_fields test (windows) 2019-09-03 18:42:40 +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