You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
615 B
25 lines
615 B
#! /bin/env pike
|
|
|
|
/* This file is a syntax highlight test for Kate.
|
|
* FIXME: Improve it to contain more (and more unusual) syntax examples.
|
|
*/
|
|
|
|
|
|
#define PIKE_ON_THE_WEB /* Is this address correct? */ "http://pike.ida.liu.se/"
|
|
|
|
|
|
int main(int argc, array(string) args)
|
|
{
|
|
// Write funny things with Pike :)
|
|
write(`+("Command line arguments (%d of them): ", @map(args, `+, " ")) + "\n", argc);
|
|
|
|
write("\nVisit Pike site at %s\n\n", PIKE_ON_THE_WEB);
|
|
|
|
for (int i = 1; i <= 3; i++)
|
|
write(":" + ")" * i + " ");
|
|
|
|
write("\n" + ({"Bye", "bye"}) * "-" + "!\n");
|
|
|
|
return 0;
|
|
}
|