Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 378 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 378 Bytes

study-vlang

follow me to study v language

1. v run command examples

1.1 run single file

v run hello.v

1.2 run in any directory

1.2.1 run in directory

cd ANT_PATH && v run .

1.2.2 run with parameters

v run . --yourparam some_other_stuff

1.2.3 run and keep executable file

v -keepc run .