14 lines
186 B
Text
14 lines
186 B
Text
class MY_CLASS
|
|
|
|
create
|
|
make
|
|
|
|
feature {NONE} -- Initialization
|
|
|
|
make
|
|
-- This is a creation procedure or "Constructor".
|
|
do
|
|
create my_string.make_empty
|
|
end
|
|
|
|
end
|