Skip to content

Instantly share code, notes, and snippets.

<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Slideshow</title>
<style>
body {
font-family: 'Arial';
text-align: center;
}
class Person
attr_accessor :name
attr_accessor :cash
def initialize(person_name, cash_on_hand)
@name = person_name
@cash = cash_on_hand
puts "Hi, #{name}. You have $#{@cash}!"
end