We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
An alias is a name that is defined to be a type expression, but the name is not part of type. It is just a shorthand:
alias handle = int var windowHandle handle = 0 // windowHandle variable will simply be of type int alias T-list = [T] var a T-list // a will be of type [T]