Prakash P
Prakash P

Reputation: 4066

How to get list of supported argument in V (command line)

I have installed v using the official doc on my Ubuntu 20.04 LTS.

The installation was successful as I can check the version:

$ v version
V 0.2.4 310969a

When I tried to see the supported args using help arg, it is resulting in an error.

$ v help
`v help`: unknown help topic provided. Use `v help` for usage information.
Known help topics:

I tried v help, v --help, v -help, v --h, v -h but all resulted in an error.

Thanks.

Upvotes: 0

Views: 205

Answers (2)

vincenzopalazzo
vincenzopalazzo

Reputation: 1645

The more safe way to install v compiler it uses the following command

git clone https://github.com/vlang/v.git
cd v
make
make install

This will use the C compiler to build v and also symlink it without that you know nothing.

sudo ./v symlink

After that you can use both v --help and v help

Upvotes: 1

GamingFelix
GamingFelix

Reputation: 239

I'd suggest you just keep checking the documentation. There's some hello world program you can try there. I also saw it mentions, symlink.

( It is recommended to add this folder to the PATH of your environment variables. This can be done with the command v.exe symlink )

Upvotes: 0

Related Questions