About 178 results
Open links in new tab
  1. The V Programming Language

    The advantage of using V for this is the simplicity and predictability of the language, and cross-platform support. "V scripts" run on Unix-like systems as well as on Windows.

  2. V Documentation - V Lang

    2 days ago · V is a statically typed compiled programming language designed for building maintainable software. It's similar to Go and its design has also been influenced by Oberon, …

  3. Getting Started With V | The V Programming Language

    A beginners guide to finding documentation, seeking help, and feeling comfortable with V.

  4. The V Programming Language

    It is a complex language with a growing set of features and a steep learning curve. No doubt, once you learn and understand the language, it becomes a very powerful tool for developing …

  5. tutorials | The V Programming Language

    tutorials Setting Up GitHub Actions for V Introducing Setup V, and discussing why CI/CD is important. Elevate Your V Project With Unit Tests V makes it easy to add tests to your project. …

  6. Blog | The V Programming Language

    The Complete Beginner’s Guide to CLI Apps in V Learn how to make a fully featured CLI app in V in under an hour.

  7. V Documentation - V Lang

    See v help for all supported commands. From the example above, you can see that functions are declared with the fn keyword. The return type is specified after the function name. In this case …

  8. V Documentation - V Lang

    Unlike C, V does not have a ternary operator, that would allow you to do: x = c ? 1 : 2 . Instead, it has a bit more verbose, but also clearer to read, ability to use if as an expression.

  9. V Playground: Run, Edit, Share V Code Online

    Looks like you are new here! This mode allows you to translate V code to C code.

  10. The Complete Beginner’s Guide to CLI Apps in V | The V …

    In this tutorial, we built a sample application of modest size that demonstrates how to use the flag module to simplify command-line argument processing, and we also learned how to structure …