File size: 392 Bytes
da86720
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

#include <stdio.h>
#include <stdlib.h>

#include "libgo10.h"

int main(int argc, char **argv) {
	int n, i;

	if (argc != 2) {
		perror("wrong arg");
		return 2;
	}
	n = atoi(argv[1]);
	for (i = 0; i < n; i++)
		GoF();

	return 0;
}