Файловый менеджер - Редактировать - /var/www/html/mycgo.zip
Ðазад
PK ! �� � go1.gonu �[��� // Copyright 2017 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. package mycgo import "fmt" func go1() { fmt.Println("go1") } PK ! s��� � c2.cnu �[��� // Copyright 2017 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> void c2(void) { puts("c2"); } PK ! ��� � c1.cnu �[��� // Copyright 2017 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> void c1(void) { puts("c1"); } PK ! ��V�� � go2.gonu �[��� // Copyright 2017 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. package mycgo import "fmt" func go2() { fmt.Println("go2") } PK ! ���>