Wiki

Clone wiki

symja_android_library / Symbols / Hold

Hold

Hold(expression)
Hold doesn't evaluate the given expression. The Hold() function itself is not displayed in the output form.

Examples

FullForm shows the difference in the internal expression representation:

>>> Hold(x*x+1)
1+x*x

Updated