@marie마리 compile -> rust
```
use std::os::raw::{c_int, c_void};

extern "C" {
fn write(fd: c_int, buf: *const c_void, count: usize) -> isize;
}

fn main() {
let bytes: [u8; 15] = [
234, 179, 160, 235, 160, 164,
235, 140, 128,
237, 149, 153,
234, 181, 144,
];

unsafe {
write(1, bytes.as_ptr() as *const c_void, bytes.len());
write(1, b"\n".as_ptr() as *const c_void, 1);
}
}
```

0

If you have a fediverse account, you can quote this note from your own instance. Search https://social.silicon.moe/users/zeroday0619/statuses/116109199955649758 on your instance and quote it. (Note that quoting is not supported in Mastodon.)