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
"workbench.colorCustomizations": { | |
"terminal.selectionBackground": "#D4D4D4", | |
"terminal.background": "#2B2B2B", | |
"panel.background": "#002B36", | |
"editor.background": "#002B36", | |
"editorGutter.background": "#073642", | |
"menubar.background": "#ff0000", | |
"menu.background": "#ff0000", | |
"activityBar.background": "#3d3d3d", | |
"sideBar.background": "#3d3d3d", |
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
def find_the_cheese(array) | |
cheese_types = ["cheddar", "gouda", "camembert"] | |
new_array = [] | |
if array.include?(cheese_types) | |
return new_array << array | |
else return nil | |
end | |
new_array | |
end |
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
1 = lambda {"Do Not Call Me!" } | |
puts 1.call |