Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Done #697

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Done #697

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
10 changes: 9 additions & 1 deletion lib/introduction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,19 @@
# in order to complete the rest of this course and be ready for the next course!


def introduction(name)
puts "Hi, my name is #{name}."
end


def introduction_with_language(name, language)
puts "Hi, my name is #{name} and I am learning to program in #{language}."
end



def introduction_with_language_optional(name, language = "Ruby")
puts "Hi, my name is #{name} and I am learning to program in #{language}."
end



Expand Down