1
1
Fork 0
AtomicKotlinCourse/Object-Oriented Programming/Base Class Initialization/Exercise 3/task-info.yaml

22 lines
444 B
YAML
Raw Normal View History

2020-06-15 18:52:18 +03:00
type: edu
files:
- name: src/Task.kt
visible: true
placeholders:
2020-12-03 02:49:02 +03:00
- offset: 92
2020-06-15 18:52:18 +03:00
length: 146
placeholder_text: '/* TODO: Implement Animal, Cat and Dog classes */'
2020-12-03 02:49:02 +03:00
- offset: 253
length: 119
2020-06-15 18:52:18 +03:00
placeholder_text: |-
/*
val animal = Animal()
trace(animal.sound)
2020-06-15 18:52:18 +03:00
val cat = Cat()
trace(cat.sound)
2020-06-15 18:52:18 +03:00
val dog = Dog()
trace(dog.sound)
2020-06-15 18:52:18 +03:00
*/
- name: test/Tests.kt
visible: false