Skip to content

Commit

Permalink
Update example.sc
Browse files Browse the repository at this point in the history
  • Loading branch information
guenchi authored Apr 30, 2018
1 parent eb18d97 commit bc0797e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example.sc
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@

(define deline
(lambda (x return)
(return (errorpage 403))))
(return handle403)))


(define verify
(lambda (x return)
(if (equal? (caddr x) "ok")
(next x return)
(return (errorpage 403 (cadr x))))))
(return (lambda k (errorpage 403 (cadr x)))))))


(get-use pass)
Expand Down

0 comments on commit bc0797e

Please sign in to comment.