hy/eg/tryhy/js/repl.js
Johan Euphrosine c32172e758 eg: add tryhy
2013-10-31 14:39:24 -07:00

18 lines
474 B
JavaScript

$(document).ready(function(){
$('#hy-console').console({
promptLabel: 'hy=> ',
commandValidate:function(line){
if (line == "") return false;
else return true;
},
commandHandle:function(line, report){
$.get("/eval", {code: line}, function(data) {
report([{msg : data, className:"jquery-console-message-value"}]);
});
},
animateScroll:true,
promptHistory:true,
autofocus:true,
}).promptText('(+ 41 1)');
});