1234567891011121314151617181920212223242526272829303132 |
- <!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/requirejs/require.min.js'></script>
- <script src='../support/amber.js'></script>
- </head>
- <body>
- <script type='text/javascript'>
- require.config({
- paths: {
- 'amber_cli': 'js',
- 'amber_cli/_source': 'st'
- }
- });
- require(
- ["amber/devel",
- "amber_cli/AmberCli" ],
- function (smalltalk) {
- smalltalk.defaultAmdNamespace = 'amber_cli';
- smalltalk.initialize();
- smalltalk.Browser._openOn_(smalltalk.AmberCli);
- }
- );
- </script>
- </body>
- </html>
|