diff options
Diffstat (limited to 'org/c/ex_01.org')
-rw-r--r-- | org/c/ex_01.org | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/org/c/ex_01.org b/org/c/ex_01.org index d479a84..fd6f685 100644 --- a/org/c/ex_01.org +++ b/org/c/ex_01.org @@ -1,9 +1,12 @@ * Exercise 1. +This isn't my first rodeo, so I won't be breaking everything down. + +My aim doing this using org-mode in a literate style is to produce some sort of useful documentation for myself, something like a cookbook. #+BEGIN_SRC C #include <stdio.h> - + /* comments for fun and proffit */ int main(int argc, char *argv[]) { int distance = 100; @@ -16,5 +19,3 @@ #+RESULTS: : you are 100 miles away. - -Big notable bits from this are the ~#include~. |