Icon+Unicon/Intro: Difference between revisions

Content added Content deleted
Line 789: Line 789:
* for records and structures the type of the parameter is tested
* for records and structures the type of the parameter is tested
* for types with type coercion functions (e.g. integer, real, numeric, string) the function is called to test type and perform type coercion.
* for types with type coercion functions (e.g. integer, real, numeric, string) the function is called to test type and perform type coercion.
<lang Unicon>procedure f1(i:integer:1,r:real,s:string,n:numeric,S:set,L:list,x:myrecordtype)</lang>
<lang Unicon>
procedure f1(i:integer:1,r:real,s:string,n:numeric,S:set,L:list,x:myrecordtype)</lang>


=== Event monitoring and cross-co-expression introspection ===
=== Event monitoring and cross-co-expression introspection ===