0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-15 17:16:26 +00:00
org-mode/testing/examples/ob-awk-test.org
Jonas Bernoulli 5117d8a159 Fix typos
2019-11-16 17:17:36 -05:00

829 B

a collection of examples for ob-awk tests

Simple tests

Run without input stream

  BEGIN {
      print 42
  }

Use a code block output as an input

  {
      print 42+$1
  }

Use input file

    $0~/[\t]*#/{
        # skip comments 
        next
    }
    { 
        print $1*10
    }
a b c
  BEGIN{ print a; }

Input data generators

A code block to generate input stream

(print "1")