Making a Programming Language From Scratch/Function Call

Function calls edit

Functions need to be called if they are to be of any use. There are two types of calling a function.

Non void call: A non void call is used for all functions that return a value. These functions are called and the returning value used for expressions or for logical processing.


 

To do:
add more content