0% found this document useful (0 votes)
42 views1 page

You Can Edit This Code! // Click Here and Start Typing. Package Main

This Go code prints a greeting in multiple languages. It imports the fmt package for printing and defines a main function that uses Println to output "Hello, 世界", printing "Hello" in English and "世界" in Japanese.

Uploaded by

Junjun Ortega
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views1 page

You Can Edit This Code! // Click Here and Start Typing. Package Main

This Go code prints a greeting in multiple languages. It imports the fmt package for printing and defines a main function that uses Println to output "Hello, 世界", printing "Hello" in English and "世界" in Japanese.

Uploaded by

Junjun Ortega
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

// You can edit this code!

// Click here and start typing.

package main

import "fmt"

func main() {

fmt.Println("Hello, 世界")

You might also like