Skip to content

Instantly share code, notes, and snippets.

View kingrichardiii's full-sized avatar

Richard kingrichardiii

View GitHub Profile
class Pet
attr_reader :color, :breed
attr_accessor :name
def initialize(color,breed)
@color = color
@breed = breed
@hungry = true
end
def feed(food)
puts "Mmmm " + food + "!"
class Cat
attr_reader :color, :breed
attr_accessor :name
def initialize(color,breed)
@color = color
@breed = breed
@hungry = true
end
def feed(food)
puts "Mmmm " + food + "!"
def fav_foods
food_array = []
3.times do
food_array.each { |food| puts "I like #{food} too!" }
puts "Name a favorite food"
food_array << gets.chomp
end
puts "Your favorite foods are #{food_array.join(",")}"
end
fav_foods
my_name= "richard"
def greeting
puts "Please enter your name:"
name = gets.chomp
puts "Hello" + " " + name
end
greeting
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Richard Rabeau III</title>
<!-- JQuery -->
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<!-- Latest compiled and minified Bootstrap CSS -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Richard Rabeau III</title>
<!-- JQuery -->
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<!-- Latest compiled and minified Bootstrap CSS -->
@kingrichardiii
kingrichardiii / index.html
Last active September 15, 2015 20:30
Module 4: Lesson 18
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Richard Rabeau III</title>
<!-- JQuery -->
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<!-- Latest compiled and minified Bootstrap CSS -->
@kingrichardiii
kingrichardiii / index.html
Last active September 15, 2015 14:35
Module 4: Lesson 17
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Richard Rabeau III</title>
<!-- JQuery -->
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<!-- Latest compiled and minified Bootstrap CSS -->
@kingrichardiii
kingrichardiii / index.html
Created September 10, 2015 20:40
Module 4: Lesson 16
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Richard Rabeau III</title>
<!-- JQuery -->
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<!-- Latest compiled and minified Bootstrap CSS -->
@kingrichardiii
kingrichardiii / index.html
Created September 9, 2015 18:00
Module 4: Lesson 15
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Richard Rabeau III</title>
<!-- JQuery -->
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<!-- Latest compiled and minified Bootstrap CSS -->