mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
15 lines
448 B
HTML
15 lines
448 B
HTML
<!doctype html>
|
|
<link rel="stylesheet" href="../css/smalltalk.css">
|
|
<meta content="width=device-width,initial-scale=1" name="viewport">
|
|
|
|
<script src="../src/smalltalk.js"></script>
|
|
<script>
|
|
window.addEventListener('DOMContentLoaded', function() {
|
|
smalltalk.prompt('hello', 'world', '2+2').then(function(value) {
|
|
console.log(value);
|
|
}, function() {
|
|
console.log('close');
|
|
})
|
|
});
|
|
|
|
</script>
|