index.html 636 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Amber Smalltalk</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  6. <meta name="author" content="Nicolas Petton"/>
  7. <script type='text/javascript' src='support/amber.js'></script>
  8. <script type='text/javascript' src='support/requirejs/require.min.js'></script>
  9. </head>
  10. <body>
  11. <script type='text/javascript'>
  12. require(
  13. ["amber/devel"],
  14. function (smalltalk) {
  15. smalltalk.defaultAmdNamespace = "amber_core";
  16. smalltalk.initialize();
  17. smalltalk.Browser._open()
  18. }
  19. );
  20. </script>
  21. </body>
  22. </html>