Skip to content

Instantly share code, notes, and snippets.

@thewatts
Created November 11, 2023 16:55
Show Gist options
  • Save thewatts/66aeccf0a92bf825ff86c804ac3e1d87 to your computer and use it in GitHub Desktop.
Save thewatts/66aeccf0a92bf825ff86c804ac3e1d87 to your computer and use it in GitHub Desktop.
Sampler
<h1>Hi There :wave:</h1>
Today is: <%= Date.current %>
class Person
attr_reader :name
def initialize(name)
@name = name
end
end
person = Person.new("Steve")
person.name # => "Steve"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment