mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 03:51:18 +00:00
13 lines
196 B
Plaintext
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");
|
|
}
|