From b5ca8bdade61df9b34ce16dff2b768d8b01d65be Mon Sep 17 00:00:00 2001 From: Raphael Jolly Date: Wed, 15 May 2024 16:42:47 +0200 Subject: [PATCH] SIP-65: Generic Number Literals --- content/generic-number-literals.md | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 content/generic-number-literals.md diff --git a/content/generic-number-literals.md b/content/generic-number-literals.md new file mode 100644 index 0000000..c60a93f --- /dev/null +++ b/content/generic-number-literals.md @@ -0,0 +1,37 @@ +--- +layout: sip +title: SIP-65 - Generic Number Literals +stage: implementation +status: waiting-for-implementation +permalink: /sips/:title.html +--- + +**By: rjolly** + +## History + +| Date | Version | +|---------------|--------------------------| +| Jul 23rd 2019 | Initial Draft | + +Your feedback is welcome! If you're interested in discussing this proposal, head over to [this](https://contributors.scala-lang.org/t/status-of-experimental-numeric-literals/6658) Scala Contributors thread and let me know what you think. + +## Proposal + +Support generic number literals, as in `val x: BigInt = 111111100000022222222222`. + +## Motivation + +See . + +### Specification + +See . + +## Alternatives + +See . + +## Implementation + +The implementation of generic number literals can be found at .