Making a Programming Language From Scratch/Function Call

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Function calls[edit | edit source]

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.


Clipboard

To do:
add more content