Skip to content

Instantly share code, notes, and snippets.

@malobre
Created June 29, 2022 13:51
Show Gist options
  • Save malobre/f94b62b004b8b4305b4139f7f04a85e3 to your computer and use it in GitHub Desktop.
Save malobre/f94b62b004b8b4305b4139f7f04a85e3 to your computer and use it in GitHub Desktop.
Flattens literals into a single static string slice, placing a newline between each element.
/// Flattens literals into a single static string slice, placing a newline between each element.
macro_rules! joinln {
($head:expr, $($e:expr),* $(,)?) => {
concat!($head, $('\n', $e, )*)
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment