Special variables: Difference between revisions

Content deleted Content added
m →‎{{header|REXX}}: added a comment. -- ~~~~
+ D entry
Line 403:
 
''TODO: special variables and constants used when importing stdlib.h, such as "errno"".
 
 
=={{header|D}}==
In D there are not many special variables, beside a string[] argument of the main function. Variables like the C "errno" are usually not used, despite the C library is available.
 
One special boolean variable is __ctfe, that is read-only and it's true inside functions when they are evaluated at compile-time, and false otherwise.
 
=={{header|DWScript}}==