El año() es un método incorporado en Ruby devuelve el año por tiempo
Sintaxis : tiempo.año()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : Devuelve el año por tiempo
Ejemplo 1 :
# Ruby code for year() method # Include Time require 'time' # Declaring time a = Time.new(2000, 12, 23) # Prints the year for the time puts a.year()
Salida :
2000
Ejemplo 2 :
# Ruby code for year() method # Include Time require 'time' # Declaring time a = Time.now() # Prints the year for the time puts a.year()
Salida :
2019