Untitled
unknown
c_cpp
2 years ago
652 B
15
Indexable
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;
}Editor is loading...