Sfoglia il codice sorgente

Removed st/Demo.st

Nicolas Petton 13 anni fa
parent
commit
4a78f4a8de
1 ha cambiato i file con 0 aggiunte e 17 eliminazioni
  1. 0 17
      st/Demo.st

+ 0 - 17
st/Demo.st

@@ -1,17 +0,0 @@
-Smalltalk current createPackage: 'Demo' properties: #{}!
-Widget subclass: #HelloWorld
-	instanceVariableNames: ''
-	category: 'Demo'!
-
-!HelloWorld methodsFor: 'not yet classified'!
-
-renderOn: html
-	html h1: 'hello world!!'
-! !
-
-!HelloWorld class methodsFor: 'not yet classified'!
-
-initialize
-	^ self new appendToJQuery: 'body' asJQuery
-! !
-