Go
// HelloWorld 返り値として Hello World!
// 文字列を返します
func HelloWolrd() string {
return "Hello World!"
}
Python
def helloworld() -> str:
return "Hello World!"
TypeScript
function helloworld(): string {
return "Hello World!";
}
V
fn helloworld() string {
return "Hello World!"
}