Skip to content

Commit

Permalink
Add code example
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiaanspeck committed Nov 17, 2024
1 parent 232c351 commit e5206e3
Showing 1 changed file with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
<p>File should have at least one <pre>_package</pre>-statement. This ensures the code is loaded into the correct package.</p>
<p>File should have at least one <code>_package</code>-statement. This ensures the code is loaded into the correct package.</p>
<h2>Noncompliant Code Example</h2>
<pre>
_block
write(a)
_endblock
</pre>
<h2>Compliant Solution</h2>
<pre>
_package user

_block
write(a)
_endblock
</pre>

0 comments on commit e5206e3

Please sign in to comment.