nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
c_cpp
a month ago
652 B
2
Indexable
Never
int main ()
{
    /* Init */
    init_full(TRUE, TRUE, TRUE); /* bool:clearLog bool:remember bool:cache */

    ask("Enter> ");         /* Get input string as a source (file name) */
    source(CURRENT);        /* Load/Create and load file                */
    concat("Hello ");       /* Concatenate strings                      */
    concat("Beautiful ");
    concat("World!");
    match("Beautiful");     /* Search for "Beautiful"                   */
    replace("Awful");       /* Replace matches with "Awful"             */
    WRITE();                /* Writes to last file source               */

    show();

    return 0;
}

nord vpnnord vpn
Ad