Skip to content

Instantly share code, notes, and snippets.

@sebyx07
Created April 23, 2021 14:16
Show Gist options
  • Save sebyx07/af493313a7f76095c43730110adfe66a to your computer and use it in GitHub Desktop.
Save sebyx07/af493313a7f76095c43730110adfe66a to your computer and use it in GitHub Desktop.
module ChatApp
VERSION = "1" # String
class User
attr_reader :login, :email, :friends # String, String, Array[User | Bot]
def initialize(login, email) # String, String -> void
@login = login
@email = email
end
def reply(from, message) # User | Bot, String -> Message
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment