getting started with v programming pdf updated
Help:    Add to Cart | Check Out | Place Order | Confirmation | Installation | FAQ

fn main() { result := divide(10, 0) or { print("error: $result") return } print(result) }

We hope you enjoy programming in V!

V provides a robust error handling mechanism using the option type:

import math