Created
July 5, 2022 10:47
-
-
Save wicky-andrian/1ea6ef5496a58c503ea316c1a5656a94 to your computer and use it in GitHub Desktop.
Array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = ["B$u$i$ld", "$t$$h$e", "N$e$x$t", "E$$ra", "$$o$f$", "S$$of$t$wa$r$e", "De$$ve$l$op$me$n$t"] | |
for i in a | |
i.to_s | |
i.gsub!('$', '') | |
puts "#{i.upcase}" | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment