.. Code block

.. include:: /includes/standard.rst

================
 Code block
================

A code block is a single piece of code such as variables and assignment operations. As long as there are no more brackets in the expression, it is one code block.

Examples of Code Blocks::

	HaveMouse() // a code block
	SomeVar // a code block
	+ SomeVar 10 // a code block
	(+ SomeVar (& SomeOtherVar AnotherVar)) // a code block


