123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Amber Smalltalk</title>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
- <meta name="author" content="Nicolas Petton"/>
- <script type='text/javascript' src='support/amber4browser.js'></script>
- <script type='text/javascript' src='support/requirejs/require.min.js'></script>
- </head>
- <body>
- <script type='text/javascript'>
- require(
- ["amber_vm/smalltalk", "amber_set/full-devel"],
- function (smalltalk) {
- smalltalk.initialize();
- smalltalk.Browser._open()
- }
- );
- </script>
- </body>
- </html>
|