C
const char* greet() {
return "hello world!";
}
Go
package kata // do not remove
func greet() string {
return "hello world!"
}
JavaScript
function greet() {
return "hello world!";
}
var greet = function() {
return "hello world!";
}
PHP
function greet() {
return 'hello world!';
}
R
greet <- function() {"hello world!"}
greet <- function() {
return("hello world!")
}
greet = function() {
'hello world!'
}