.endif (also #endif)

.endif

The current top-level conditional is cleared, and the following code is assembled as normal. An example of these 3 statements could be:

age = 19

.if age < 18
    .echo "You are below the legal drinking age.\n"
.else
    .echo "Here, have a pint.\n"
.endif