Files
tinyblog/src/TinyBlog.package/TBPost.class/class/title.text..st
2018-04-30 15:59:50 +02:00

6 lines
87 B
Smalltalk

action
title: aTitle text: aText
^ self new
title: aTitle;
text: aText;
yourself