Welcome to my Github Page.
- Javascript
- Ruby
- Elixir
- I'm currently working as an Independent Software Engineer.
- Feel free to connect me on LinkedIn or email me ๐
defmodule MySelf do
use GenServer
@user "AbulAsar"
def start_link(abul_asar) do
GenServer.start_link(__MODULE__, abul_asar)
end
def init(intial_value) do
{:ok, {:name, @user}}
end
def handle_call(:city, state) do
{:reply, "Mumbai"}
end
def handle_call(:interest, state) do
{:reply, ["Programming", "Watching Movies"]}
end
def handle_call(:work, state) do
{:reply, "Independent Software Consultant"}
end
end