You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
200 B

  1. <blockquote>
  2. <p>Example:</p>
  3. <pre><code>sub status {
  4. print &quot;working&quot;;
  5. }
  6. </code></pre>
  7. <p>Or:</p>
  8. <pre><code>sub status {
  9. return &quot;working&quot;;
  10. }
  11. </code></pre>
  12. </blockquote>