summaryrefslogtreecommitdiffstats
path: root/kate/tests/highlight.pike
blob: 2f63144f56283ad53f9e8b17454dcf45255288ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /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;
}