tlang/source/tlang/testing/simple_cast.t

9 lines
114 B
Raku

module simple_cast;
int myInt;
void function(int x)
{
byte bruh;
byte myByte = (cast(byte)myInt)+bruh;
}