Skip to content
View fugoou's full-sized avatar
:shipit:
17 y.o
:shipit:
17 y.o

Organizations

@himote

Block or report fugoou

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
fugoou/README.md

who am i?

module Main where

data Person = Person
  { name :: String
  , hobby :: [String]
  , status :: String
  , origin :: String
  , quote :: String
  , website :: String
  }

fugoou :: Person
fugoou = Person
  { name = "nick a.k.a fugoou"
  , hobby = ["Watching Anime", "Reading Manga", "Reading Novel"]
  , status = "Student"
  , origin = "Indonesia"
  , quote = "Nothing is easy, but nothing is impossible."
  , website = "https://n4x.top"
  }

main :: IO ()
main = do
  putStrLn $ "Hello, I'm " ++ name fugoou ++ "."
  putStrLn $ "I am a " ++ status fugoou ++ " from " ++ origin fugoou ++ "."
  putStrLn "My Hobbies include:"
  mapM_ putStrLn $ map (\h -> "- " ++ h) (hobby fugoou)
  putStrLn $ "One of my favorite quotes: \"" ++ quote fugoou ++ "\""
  putStrLn $ "Visit my website: " ++ website fugoou
count

Popular repositories Loading

  1. Natsu Natsu Public

    Natsu is a simple Telegram UserBot Built in Python Using Telethon library.

    Python 2

  2. fugoou fugoou Public

    1

  3. BroadcastChannel BroadcastChannel Public

    Forked from ccbikai/BroadcastChannel

    Turn your Telegram Channel into a MicroBlog.

    JavaScript 1

  4. nosleep nosleep Public

    daily r/NoSleep

    Python 1