Guest User

Untitled

a guest
Jun 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #+BEGIN_SRC perl
  2. print "hello worldn";
  3. #+END_SRC
  4.  
  5. #+RESULTS:
  6. #+begin_example
  7. 1
  8. #+end_example
  9.  
  10. #+begin_src perl
  11. my @array;
  12. foreach $a (1..10) {
  13. print "$an";
  14. push @array, $a;
  15. }
  16. (1,2,3);
  17. #+end_src
  18.  
  19. #+begin_example
  20. 3
  21. #+end_example
Add Comment
Please, Sign In to add comment