Skip to content
github-actions[bot] edited this page Feb 25, 2024 · 4 revisions

Block is empty and can be removed.

Noncompliant Code Example

_if a
_then
  write(a)
_else
  # block without any contents
_endif

Compliant Solution

_if a
_then
  write(a)
_endif