cgi/ruby/ruby.rb

13 lines
232 B
Ruby
Raw Normal View History

2024-02-07 09:27:22 +01:00
---
permalink: /cgi/ruby/index.rb
---
puts('Hello from Ruby!')
puts
puts('puts(Time.now.strftime("%d/%m/%Y %H:%M"))')
puts(Time.now.strftime("%d/%m/%Y %H:%M"))
puts
puts("(1..10).each { |n| puts n }")
(1..10).each { |n| puts n }