index.html 758 B

12345678910111213141516171819202122232425262728293031
  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.config({
  13. config: {
  14. 'amber_vm/smalltalk': {
  15. defaultNamespace: 'amber'
  16. }
  17. }
  18. });
  19. require(
  20. ["amber_vm/smalltalk", "amber_set/full-devel"],
  21. function (smalltalk) {
  22. smalltalk.initialize();
  23. smalltalk.Browser._open()
  24. }
  25. );
  26. </script>
  27. </body>
  28. </html>