Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
22
Task/Null-object/Eiffel/null-object.e
Normal file
22
Task/Null-object/Eiffel/null-object.e
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
class
|
||||
APPLICATION
|
||||
inherit
|
||||
ARGUMENTS
|
||||
create
|
||||
make
|
||||
|
||||
feature {NONE} -- Initialization
|
||||
|
||||
make
|
||||
local
|
||||
i: INTEGER
|
||||
s: detachable STRING
|
||||
do
|
||||
if i = Void then
|
||||
print("i = Void")
|
||||
end
|
||||
if s = Void then
|
||||
print("s = Void")
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue