Wiki
Download
Manual
Eggs
API
Tests
Bugs
show
edit
history
You can edit this page using
wiki syntax
for markup.
Article contents:
[[toc:]] == Sandbox I'm playing around with svnwiki syntax so we can do something reasonable with [[/egg/hahn|hahn's]] svnwiki driver. === {{debug?}} <parameter>debug? → #f</parameter> Should we print debugging information to {{stdout}}? See [[debug-print|{{debug-print}}]]. <enscript highlight="scheme"> (define debug? (make-parameter #t)) </enscript> === {{debug-print}} <procedure>(debug-print key value) → unspecified</procedure> <procedure>(debug-print key value out) → unspecified</procedure> Print key-value pairs if the parameter [[#debug|{{debug?}}]] is true. ; key : The key to print ; value : The value to print ; out : The port whereto to print <enscript highlight="scheme"> (define debug-print (case-lambda ((key value) (debug-print key value #t)) ((key value out) (if (debug?) (format out "~a: ~a~%" key value))))) </enscript>
Description of your changes:
I would like to authenticate
Authentication
Username:
Password:
Spam control
What do you get when you multiply 7 by 0?