10 lines
246 B
Scheme
10 lines
246 B
Scheme
(define repl (mithril:repl "lips> ")
|
|
"The LIPS repl component.")
|
|
|
|
(define app-root (document.querySelector "#app")
|
|
"Mount point for the application root. This is where your app should go.")
|
|
|
|
(m.mount
|
|
(document.querySelector "#repl")
|
|
repl)
|
|
|