sample: Update func.rifle

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-02-17 01:11:15 -05:00
parent aae74f06ed
commit 011cfaee11

View File

@@ -1,3 +1,11 @@
.f main() : u32
{
.f octal() : u32 {
return 0o11;
}
.f hex() : u64 {
return 0xDEAD_BEEF;
}
.pub .f main() : u32 {
return 0;
}