Using Scheme in ASP
;1 Install PLT Scheme - it will register the dlls
;2 Control Panel > Administrative Tools > Component Services
; My Computer > DCOM Config > MzCOM
; Properties > Security > Launch and Activation Permissions > Customize
; Add Everyone or IUSR_<Computername> Allow Local Launch, Local Activation
;Output
;(define test (lambda () (+ 1 2 3 4 5)))
;15
strScheme = "(define test (lambda () (+ 1 2 3 4 5)))" 'Test Function Set objScheme = Server.CreateObject("MzCOM.MzObj") result = objScheme.Eval(strScheme) result = objScheme.Eval("(test)") 'It remembers the function Set objScheme = Nothing Response.Write(strScheme & "<br>" & result & "<br>") 'Display Results