From 276324dd8fb2403077b4a54e9b31d082fbe8d543 Mon Sep 17 00:00:00 2001 From: Christopher Carter Date: Thu, 13 Feb 2020 08:16:14 +0000 Subject: [PATCH] Done. --- lib/introduction.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/introduction.rb b/lib/introduction.rb index e69de29..0867dd9 100644 --- a/lib/introduction.rb +++ b/lib/introduction.rb @@ -0,0 +1,9 @@ +# lib/introduction.rb + +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 \ No newline at end of file