From 2a2b4022778b7b92b1952e2814e4853df6e9705c Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 28 Jun 2019 21:28:03 +0200 Subject: [PATCH] $if fix --- compiler/main.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/main.v b/compiler/main.v index 077d7e4c67..434472590f 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -851,7 +851,7 @@ fn new_v(args[]string) *V { } fn run_repl() []string { - if $windows { + $if windows { println('REPL does not work on Windows yet, sorry!') exit1() }