Created
April 23, 2021 14:16
-
-
Save sebyx07/af493313a7f76095c43730110adfe66a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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