Content deleted Content added
added Category:Operators (programming) using HotCat |
Delphi/Turbo Pascal example was added ~~~~ |
||
Line 22:
}
</source>
Delphi / Turbo Pascal / Free Pascal:
<source lang="delphi">
var FilteredChars: set of [#0..#32,#127,'a'..'z'];
var CheckedItems: set of [4,10..38,241,58];
</source>
=== Variable number of parameters ===
|