Procházet zdrojové kódy

Removed st/Demo.st

Nicolas Petton před 13 roky
rodič
revize
4a78f4a8de
1 změnil soubory, kde provedl 0 přidání a 17 odebrání
  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
-! !
-