Sha256: 6a313928f8d5ab47acc63a824d2b9b13df7036c9b7e1c20083144b0e0eecad65
Contents?: true
Size: 670 Bytes
Versions: 3
Compression:
Stored size: 670 Bytes
Contents
# -*- mode: org -*- #+TITLE: Runnable vs. Commented blocks #+DATE: 2014-05-03 #+STARTUP: showeverything #+NOTEBOOK: commented_block #+runmode: sequential ** Runnable blocks #+name: runnable_block_1 #+begin_src bash :results output echo "first" > output.log #+end_src ** COMMENT Non runnable blocks #+name: not_runnable_block_2 #+begin_src bash :results output echo "should not run" >> output.log #+end_src ** More runnable blocks #+name: runnable_block_3 #+begin_src bash :results output echo "third" >> output.log #+end_src *** COMMENT Not runnable block #+name: not_runnable_block_4 #+begin_src bash :results output echo "fourth" >> output.log #+end_src
Version data entries
3 entries across 3 versions & 1 rubygems