Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Name: [Alexandre Santos](Github https://github.com/alexendrios)
Place: Brasília - DF, Brazil
About: Quality Assurance Testing Automation
Programming Language: C, C++, Ruby, Java, Python
Email: [email protected]
19 changes: 19 additions & 0 deletions hello-world/hello_word.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
def greetings
message = 'Welcome to hacktoberfest 2019!!!'
end

def header
string = '-----------------------------------------'
end

def footer
string = "2019 DigitalOcean, LLC. All rights reserved."
end

def presentation
p header
p greetings
p footer
end

apresentacao