Back to slide
Keyboard shortcut: 'u' 

(load (string-append laml-dir "laml.scm"))

(laml-style "questionnaire/questionnaire")
(lib-load "time.scm")

(define language-preference 'english)

(questionnaire
  "The LAML Questionnaire"
  "http://www.cs.auc.dk/~normark/cgi-bin/questionnaires/generic-form-registrator.cgi"
  'laml-questionnaire

  (identification-question 'name "What is your name?")

  (identification-question 'email "What is your email address?")

  (free-style-question 'www-approach "Describe briefly your approach and tools for WWW authoring (if any)")

  (rating-question 'laml-rating
     "How do you rate LAML as a 'tool' for WWW authoring and Internet programming?"
     (list "Poor" "Not good" "OK" "Good" "Very good")
  )

  (free-style-question 'functional-opinion
     "What is your opions on functional programming in the Internet programming domain?"
  )

  (multi-choice-question 'laml-use
     "Would you be able to use LAML for"
     (list "business purposes" "private purposes" "major WEB tasks" "minor WEB tasks")
  )

  (rating-question 'laml-seminar-rating
     "How do you rate the seminar about LAML?"
     (list "Poor" "Not good" "OK" "Good" "Very good")
  )

  (rating-question 'laml-material-rating
     "How do you rate the paper and the CD received on the seminar?"
     (list "Poor" "Not good" "OK" "Good" "Very good")
  )

  (single-choice-question 'future-info
     "Would you like to receive email about future LAML distributions?"
     (list "yes" "no")
  )

  (free-style-question 'laml-others "Other comments can be stated here")



  (kn)

  (font-1 1 red (when-generated))

)