Files
c3c/test/test_suite/statements/format_hex_array.c3
2025-06-30 21:41:52 +02:00

13 lines
196 B
Plaintext

import std::io;
macro convert_string_to_hex(String s)
{
io::printfn("%02hx", (char[])s);
}
fn void main() {
char[3] x = x"0305ff";
io::printfn("%02h", x);
convert_string_to_hex("colors");
}