// 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 #include #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; }