]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.chill/pr-6292.ch
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.chill / pr-6292.ch
1 hack : module
2
3 dcl i int;
4
5 fred : proc (a int in, b int loc);
6 writetext(stdout, "a was '%C'; b was '%C'.%/", a, b);
7 b + := 1;
8 end fred;
9
10 klaus : proc ();
11 writetext(stdout, "here's klaus calling.%/");
12 end klaus;
13
14 i:=12;
15 writetext(stdout, "done.%/");
16
17 end hack;