Demo.st 339 B

1234567891011121314151617
  1. Smalltalk current createPackage: 'Demo' properties: #{}!
  2. Widget subclass: #HelloWorld
  3. instanceVariableNames: ''
  4. category: 'Demo'!
  5. !HelloWorld methodsFor: 'not yet classified'!
  6. renderOn: html
  7. html h1: 'hello world!!'
  8. ! !
  9. !HelloWorld class methodsFor: 'not yet classified'!
  10. initialize
  11. ^ self new appendToJQuery: 'body' asJQuery
  12. ! !