1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages/common/v.md
CreeperFace 9ac5a701df
v: add page (#15235)
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
2024-12-21 00:14:16 +05:30

620 B

v

A tool for managing V source code. More information: https://docs.vlang.io/getting-started.html.

  • Compile a file and output its executable:

v {{path/to/file.v}}

  • Compile the current project or directory:

v .

  • Compile a file and run it:

v run {{path/to/file.v}}

  • Compile a file and run it, output its executable:

v crun {{path/to/file.v}}

  • Re-compile on every modification to a file:

v watch {{path/to/file.v}}

  • Re-run on every modification to a file:

v watch run {{path/to/file.v}}

  • Open the v repl:

v repl

  • Format a file and [w]rite to it:

v fmt -w {{path/to/file.v}}