File: input.t

package info (click to toggle)
tela 1.28-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 6,596 kB
  • ctags: 5,519
  • sloc: ansic: 14,013; cpp: 13,376; lex: 1,651; fortran: 1,048; yacc: 834; sh: 715; makefile: 464
file content (31 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
	C style comments are recognized
		/* They are even nested */
*/

{
	x = 23;
	a = -2.01;
	b = 0;
	c = 1;
	(x-2.3i)^2;		// comment, C++ style
	y = -134;		// comment
	x = -a+b-c+4;
	y = 4;
	if ( 1 ) {
		z = 5;
		z2 = 25i;
	} else if (2)
		z = 6
	else
		z = 7;
	i = 1;
	j = 4;
	imax = 10;
	while (x <= y && i && j) z = 0;
	for (i=0; i<imax; i++)
		disp(a+1+b^2);
	//continue;
	//break;
}