changeset 21:f88b7d2c25d9

lol.
author Robert McIntyre <rlm@mit.edu>
date Tue, 17 Sep 2013 17:42:51 -0400
parents 47fa6dc56e30
children 8992278bf399
files org/lpsolve.org
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/org/lpsolve.org	Sun Mar 10 19:17:47 2013 +0000
     1.2 +++ b/org/lpsolve.org	Tue Sep 17 17:42:51 2013 -0400
     1.3 @@ -125,6 +125,8 @@
     1.4  
     1.5  Running the =lp_solve= program on =farmer.lp= yields the following output.
     1.6  
     1.7 +lol
     1.8 +
     1.9  #+begin_src sh :exports both :results scalar
    1.10  lp_solve ~/proj/pokemon-types/lp/farmer.lp
    1.11  #+end_src
    1.12 @@ -177,7 +179,7 @@
    1.13  (import 'lpsolve.LpSolve)
    1.14  #+end_src
    1.15  
    1.16 -#+results: body
    1.17 +#+results:
    1.18  : lpsolve.LpSolve
    1.19  
    1.20  should run with no problems.
    1.21 @@ -402,6 +404,7 @@
    1.22  #+results:
    1.23  : {"barley" 53.12499999999999, "wheat" 21.875}
    1.24  
    1.25 +
    1.26  And it works as expected!
    1.27  
    1.28  *** The Farmer Example in Clojure, Pass 2