1
0
mirror of https://github.com/osmarks/osmarkscalculator.git synced 2025-07-01 01:23:10 +00:00
2022-11-10 17:31:44 +00:00

7 lines
167 B
Rust

use inlinable_string::{InlinableString, StringExt};
pub fn char_to_string(c: char) -> InlinableString {
let mut s = InlinableString::new();
s.push(c);
s
}