mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
11 lines
147 B
C++
11 lines
147 B
C++
#include "md.h"
|
|
#include "md.c"
|
|
|
|
int main(void)
|
|
{
|
|
MD_String8 str = "foobar"_md;
|
|
printf("%.*s", MD_StringExpand(str));
|
|
|
|
return 0;
|
|
}
|