@@ -5,34 +5,19 @@ pub fn print_seven_longs(int a, int b, int c, int d, int e, int f, int g) {
55}
66
77pub fn print_eight_longs(int a, int b, int c, int d, int e, int f, int g, int h) {
8- # once printf is implemented in Johann
9- # printf("J: %d, %d, %d, %d, %d, %d, %d, and %d\n",
10- # a, b, c, d, e, f, g, h);
11- printf("J: %d, %d, %d, %d, %d, %d, %d",
12- a, b, c, d, e, f, g);
13- printf(", and %d\n",
14- h);
8+ printf("J: %d, %d, %d, %d, %d, %d, %d, and %d\n",
9+ a, b, c, d, e, f, g, h);
1510 flush_stdout__();
1611}
1712
1813pub fn print_nine_longs(int a, int b, int c, int d, int e, int f, int g, int h, int i) {
19- # once printf is implemented in Johann
20- # printf("J: %d, %d, %d, %d, %d, %d, %d, %d, and %d\n",
21- # a, b, c, d, e, f, g, h, i);
22- printf("J: %d, %d, %d, %d, %d, %d, %d",
23- a, b, c, d, e, f, g);
24- printf(", %d, and %d\n",
25- h, i);
14+ printf("J: %d, %d, %d, %d, %d, %d, %d, %d, and %d\n",
15+ a, b, c, d, e, f, g, h, i);
2616 flush_stdout__();
2717}
2818
2919pub fn print_ten_longs(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j) {
30- # once printf is implemented in Johann
31- # printf("J: %d, %d, %d, %d, %d, %d, %d, %d, %d, and %d\n",
32- # a, b, c, d, e, f, g, h, i, j);
33- printf("J: %d, %d, %d, %d, %d, %d, %d",
34- a, b, c, d, e, f, g);
35- printf(", %d, %d, and %d\n",
36- h, i, j);
20+ printf("J: %d, %d, %d, %d, %d, %d, %d, %d, %d, and %d\n",
21+ a, b, c, d, e, f, g, h, i, j);
3722 flush_stdout__();
3823}
0 commit comments