Creates a function
Aliases:
void myFunction(parameters) { // Your code here}
public void MyFunction(parameters){ // Your code here}
func MyFunction(parameters) void { // Your code here}
functionName :: parameterTypes -> returnTypefunctionName parameters = expression
public void myFunction() { // Your code here}
function myFunction() { // Your code here}
fun myFunction(): Unit { // Your code here}
sub myFunction { my () = @_; # Your code here}
function myFunction { param ( ) # Your code here}
def my_function(): # Your code here
my_function <- function() { # Your code here}
def my_function() # Your code hereend
fn my_function() -> void { // Your code here}
def myFunction(): Unit = { // Your code here}
myFunction() { // Your code here}
func myFunction() -> Void { // Your code here}
function myFunction(): void { // Your code here}