Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 330 Bytes

File metadata and controls

13 lines (7 loc) · 330 Bytes

Identifiers

Any non-reserved keyword that starts with any number of “_” followed by an ASCII alphabetic character and followed by any number of alphabetic or numeric chars, “_” or “$” can be used as identifier. Examples of identifiers are the following:

signal input _in; 
var o_u_t;
var o$o;