A Ruby write to file example

# Open a file in write mode
file = File.open("example.txt", "w")

# Write content to the file
file.puts "Hello, this is an example of writing to a file in Ruby."

# Close the file
file.close