hello world in r

# Step 1: Create a variable named "hello_message" and assign the string "Hello, World!" to it.
hello_message <- "Hello, World!"

# Step 2: Print the value of the variable "hello_message" to the console.
print(hello_message)