# frozen_string_literal: true
class AgustinVignolo < SoftwareEngineer
def initialize
@name = 'AgustΓn Vignolo'
@age = '23'
@languages = ['Spanish', 'English']
@role = 'Software Engineer'
@career = 'Bachelors degree in systems'
@university = 'ORT University'
end
def greet
puts 'Hi there, nice to see you here :)'
end
private
attr_accessor :name, :age, :languages, :role, :career, :university
end
> AgustinVignolo.new.greet- Dockerize Rails with MongoDB: https://setaworkshop.com/blog/dockerize-rails-mongodb
Currently building management software aimed to help automotive workshops streamline operations, manage customers, and improve service efficiency.



