Read This! | | Quick Links | Algorithms | AssemblyLanguage | BASH | C-Programmming | CommonLisp | Computer Security | Databases | Emacs | Exploitation | Functional Programming | Firewalls | Git | Haskell | Javascript | Julia | Social Engineering | Picolisp | Pharo Smalltalk | Linux | Python | Operating Systems | Machine Learning | Metasploit | Open Data Science | Networking | Machine Learning | Racket | Scheme | Unity | vim | V | Web Development | Windows WSL

The V Programming Language

Variable

Variable are immutable by default
  x:= 100
use the mut keyword to make it mutable.

Naming Convetions

Declare variable with := , use = to reassign.

Parallel Declaration and Assignment

a, b, c := 1, 2 3 mut d, mut e := "hello" , "hi"

reassign with the same type only:
d, e = "what" , "who"

http:///wiki/?vlang

25aug22   admin