Welcome to the main channel on the development of MoarVM, a virtual machine for NQP and Rakudo (moarvm.org). This channel is being logged for historical purposes.
Set by lizmat on 24 May 2021.
Nicholas good *, * 06:40
nine First heredoc support unlocked another 5 spec test files. Up to 421 passing now :) 12:12
lizmat m: class A { has uint $.a = -1 }; dd A.new.a # nine, is that supposed to be ok or was there something missed ? 20:27
camelia -1
lizmat m: my $a = 18446744073709551615; say $a 20:29
camelia 18446744073709551615
lizmat m: class A { has uint $.a = 18446744073709551615 }
camelia ===SORRY!=== Error while compiling <tmp>
Cannot unbox 64 bit wide bigint into native integer
at <tmp>:1
lizmat m: class A { has uint $.a; method b() { $!a = 18446744073709551615 } }; say A.new.b 20:31
camelia -1
MasterDuke hm, my understanding is that directly assigning too-big values is supposed to not be allowed, but doing math that wraps around is allowed 20:33
lizmat but that's the point: the value is *not* too big for a uint 20:34