From GridLAB-D Wiki
Jump to: navigation, search

The #else macro closes a conditional block and open the alternative block used when test fails.

GLM

#if test
// conditional block
#else
// alternative block
#endif

= See also