Functions

Functions are pieces of code that perform something. Most expressions come inside functions, that's why they are so important! Functions use the following structure:
privacy type name([arguments]) { // do whatever
}