alongubkin / alongubkin/spider

Abstract Functions

Open
#84 4 comments 0 reactions 0 assignees View on GitHub
contributing-getting-started need-feedback proposal
Dominant language
JavaScript
Stars
1.3k
Forks
46
PR merge metrics
No merged PRs in 30d

Description

The abstract modifier indicates that a function has a missing or incomplete implementation. Useful for inheritance.

```
abstract fn Animal() {
}

fn Snake() extends Animal() {
}

var snake = new Snake(); // ok
var animal = new Animal(); // error - Animal is abstract
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.