From 33e08166ff41160ceb34bd0336cc072c6765b71a Mon Sep 17 00:00:00 2001 From: Sam Vervaeck Date: Wed, 27 May 2020 09:08:44 +0200 Subject: [PATCH] Add an experimental arbitrary-precision integer types --- stdlib/numbers.bolt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stdlib/numbers.bolt b/stdlib/numbers.bolt index 6fedb44ae..4c167ba6d 100644 --- a/stdlib/numbers.bolt +++ b/stdlib/numbers.bolt @@ -10,6 +10,9 @@ pub struct u32; pub struct u64; pub struct usize; +pub struct int; +pub struct uint; + trait Num; fn (a: N) + (b: N) -> N where N: Num {