Skip to content

Check EmptyBlock

github-actions[bot] edited this page Mar 6, 2024 · 2 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

NOTE: This page is generated. Any changes made to this page through the wiki will be lost in the future.