소스 검색

Removed st/Demo.st

Nicolas Petton 13 년 전
부모
커밋
4a78f4a8de
1개의 변경된 파일0개의 추가작업 그리고 17개의 파일을 삭제
  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
-! !
-