#ignore #c-like #stdio # #

app ignore-crates-io-language-aliases-broken

ignore this

7 releases

0.1.6 Jun 29, 2024
0.1.5 Jun 26, 2024

#11 in #c-like

Download history 2/week @ 2024-07-24 6/week @ 2024-09-11 3/week @ 2024-09-18 3/week @ 2024-09-25

294 downloads per month

MIT license

2KB

rust ✅ :

let mmm = "this works";

rs ❌:

let mmm = "but, this doesn't";

clike ✅:

#include <stdio.h>

int main() {
    const char *mmm = "this works";
    return 0;
}

c ❌:

#include <stdio.h>

int main() {
    const char *mmm = "but, this doesn't";
    return 0;
}

markup ✅:

<mmm>this works</mmm>

xml ❌:

<mmm>but, this doesn't</mmm>

No runtime deps