discard

discard given value, without pushing it onto the stack


Parameters

discard value :any

Returns

  • :nothing

Examples

copy
validInteger?: function [str][ not? throws? [ discard to :integer str ; we don't really need the value here - ; we just want to see if the operation throws an error ] ] print validInteger? "123" ; true

Related