:heavy_check_mark: examples/go/helloworld.aoj.go

Depends on

Required by

Verified with

Code

// competitive-verifier: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/1/ITP1_1_A

package main

import (
    "fmt"
    "./helloworld"
)

func main() {
    fmt.Printf("%s\n", helloworld.GetHelloWorld())
}

Test cases

Env Name Status Elapsed Memory
go judge_data :heavy_check_mark: AC 117 ms 0 MB
Back to top page