Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.25 KB

proposal-template.md

File metadata and controls

44 lines (29 loc) · 1.25 KB

FEATURE_NAME

Summary

One para explanation of the feature.

Motivation

Why are we doing this? What use cases does it support? What is the expected outcome?

Detailed design

This is the bulk of the proposal. Explain the design in enough detail for somebody familiar with the language to understand, and for somebody familiar with the compiler to implement, and include examples of how the feature is used. This section can start out light before the prototyping phase but should get into specifics and corner-cases as the feature is iteratively designed and implemented.

Example code:

' Creates an IEnumerable object that goes from 1 to 10.
Dim range = 1 To 10

Drawbacks

Why should we not do this?

Alternatives

What other designs have been considered? What is the impact of not doing this?

Unresolved questions

What parts of the design are still TBD?