Manuals/calci/VOID

From ZCubes Wiki
Revision as of 02:21, 3 March 2020 by Devika (talk | contribs) (Created page with "<div style="font-size:30px">'''VOID()'''</div><br/> ==Description== *This function returns the result as Null. *A function with void result type ends either by reaching the e...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
VOID()


Description

  • This function returns the result as Null.
  • A function with void result type ends either by reaching the end of the function or by executing a return statement with no returned value.
  • The void type is the type for the result of a function that returns normally, but does not provide a result value to its caller.

Example

  1. VOID() = null

See Also


References

Void