1234567891011121314151617181920212223242526 |
- (function (smalltalk,nil,_st) {
- var inBrowser = typeof amber !== "undefined" && typeof amber.load === "function";
- function init() {
- smalltalk.initialize();
-
- if (inBrowser && amber.smalltalkReady) {
- amber.smalltalkReady(smalltalk,nil,_st);
- }
- }
- if (inBrowser) {
-
-
-
-
- setTimeout(init, 0);
- } else {
-
-
-
-
- init();
- }
- })(global_smalltalk,global_nil,global__st);
|