X Tutup
Skip to content
View GopherParrot's full-sized avatar
:shipit:
Just a parrot β˜•οΈŽοΈŽ
:shipit:
Just a parrot β˜•οΈŽοΈŽ

Block or report GopherParrot

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
GopherParrot/README.md

Oh hi! I'm Willie Parrot

Hi again! I really like coding


About Me

package main

import "fmt"

type Info struct {
  Name string
  Age int
  IsStudent bool
}

type InfoAboutMe struct {
  Info
  Hobby string
}

var introduce = InfoAboutMe{
  Info: Info{Name: "Willie Parrot", Age: 21, IsStudent: true}, // Um actually I'm 13 β˜πŸ€“
  Hobby: "Origami (ζŠ˜γ‚Šη΄™), Kirigami (εˆ‡γ‚Šη΄™) and Kumiko (硄子), and I'm not Japanese",
}
 
func main() {
  amIaStudent := "no"
  if introduce.IsStudent {
    amIaStudent = "yes"
  }
  fmt.Println("My name is ", introduce.Name)
  fmt.Println("I am ", introduce.Age, " years old")
  fmt.Println("Am I a student? ", amIaStudent)
  fmt.Println("My hobbies are ", introduce.Hobby)
}

You don't know the output? Let me help you :)
Output:

My name is Willie Parrot
I am 21 years old
Am I a student? yes
My hobbies are Origami (ζŠ˜γ‚Šη΄™), Kirigami (εˆ‡γ‚Šη΄™) and Kumiko (硄子), and I'm not Japanese

Skills and Tech Stack

My Skills

My GitHub Streak

GitHub Streak

My GitHub Stats

GopherParrot's GitHub Stats

My most used language

stats graph
languages graph

That's all you should know :) Bye

Popular repositories Loading

  1. Reciper Reciper Public

    Make something delicious with Reciper! (Powered by Gemini 2.0 flash)

    JavaScript 2

  2. GopherParrot GopherParrot Public

    About me

    2

  3. gorain gorain Public

    Get a rainy vibe in your terminal β˜•οΈŽοΈŽ

    Go 2

  4. my-neovim-setup my-neovim-setup Public

    In case I messed up, I'm still safe :)

    Lua 2

  5. Metaballs Metaballs Public

    I recreated metaballs

    HTML 2

  6. Buttons Buttons Public

    buttons

    HTML 1

X Tutup