Add all the A tasks
This commit is contained in:
parent
2dd7375f96
commit
051504d65b
1608 changed files with 18584 additions and 0 deletions
11
Task/Abstract-type/PicoLisp/abstract-type.l
Normal file
11
Task/Abstract-type/PicoLisp/abstract-type.l
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# In PicoLisp there is no formal difference between abstract and concrete classes.
|
||||
# There is just a naming convention where abstract classes start with a
|
||||
# lower-case character after the '+' (the naming convention for classes).
|
||||
# This tells the programmer that this class has not enough methods
|
||||
# defined to survive on its own.
|
||||
|
||||
(class +abstractClass)
|
||||
|
||||
(dm someMethod> ()
|
||||
(foo)
|
||||
(bar) )
|
||||
Loading…
Add table
Add a link
Reference in a new issue