Newer
Older
Ruby / namehello.rb
@NARITA Reo NARITA Reo on 2 Oct 2021 137 bytes 2021-10-02 16:00:23
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

def hello2
  x=gets.chomp
  printf("%sさんこんにちは!\n",x)
end
printf("%s",hello2)