Mercurial > thoughts
view org/steph.org @ 164:7a6b855cfb99 tip
more ideas, other stuff.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Tue, 12 Jul 2016 21:16:25 -0700 |
parents | 8714919e1e52 |
children |
line wrap: on
line source
1 #+title: Gooodbye2 #+author: Robert McIntyre3 #+email: rlm@mit.edu4 #+setupfile: ../../aurellem/org/setup.org5 #+include: ../../aurellem/org/level-0.org7 [[../images/steph.jpg]]9 #+begin_src clojure :results output :exports both10 (import '(org.joda.time DateMidnight Interval))12 (def steph-birth (DateMidnight. 1990 12 2))14 (def steph-death (DateMidnight. 2012 7 26))16 (def life (Interval. steph-birth steph-death))18 (printf19 "%d days."20 (.getStandardDays (.toDuration life)))21 #+end_src23 #+results:24 : 7906 days.26 Goodbye Stephanie. I will miss you.