File tree Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Original file line number Diff line number Diff line change 1212 # :defapp)
1313 (:export  # :start
1414 # :stop
15+  # :*notes* 
1516 # :*proposition* 
1617 # :*port* )
1718 (:nicknames  # :webapp))
2021
2122(defvar  *proposition*  " P => Q"   " Default proposition"  )
2223(defvar  *port*  (find-port :find-port))
24+ (defvar  *notes* 
25+  ' (" My lexer doesn't works very well for parenthesis." 
26+  " Please, don't be evil. Use less than 10 variables." 
27+  " Yes, [+] it's a XOR. Mathematically: p ⊕ q." 
28+  " (=> ->) and (<=> <->) are aliases."  ))
2329
2430(defapp truth-table
2531 :prefix  " /" 
8288 (:pre  (format  nil  " Operators: ~a "   inference :*valid-operators* ))
8389 (:p  " Some notes: " 
8490 (:ul 
85-  (loop  for note in ' (" My lexer doesn't works very well for parenthesis." 
86-  " Please, don't be evil. Use less than 10 variables." 
87-  " Yes, [+] it's a XOR. Mathematically: p ⊕ q." 
88-  " (=> ->) and (<=> <->) are aliases."  )
89-  do  (:li  (render note)))))))
91+  (loop  for note in *notes* 
92+  do  (:li  (render note)))))
93+  (:span  " Source: " 
94+  (:a  :href  " https://github.com/ryukinix/lisp-inference" 
95+  " ryukinix/lisp-inference"  ))
96+  (:br )
97+  (:span  " Documentation: " 
98+  (:a  :href 
99+  " https://lerax.me/lisp-inference"   " lerax.me/lisp-inference"  ))))
90100
91101(defmethod  render  ((string  string ))
92102 (with-html
                                 You can’t perform that action at this time. 
               
                  
0 commit comments