Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added Golang data type and user define data type #726

Merged
merged 4 commits into from
Oct 3, 2022
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
38 changes: 37 additions & 1 deletion data/golang.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,42 @@
}
]
},
{
"title": "ডাটা টাইপ",
"items": [{
"definition": "অক্ষর",
"code": "char"
},
{
"definition": "পূর্ণসংখ্যা",
"code": "int/int32/int64"
},
{
"definition": "ফ্লোটিং পয়েন্ট সংখ্যা",
"code": "float/float32/float64"
},
{
"definition": "বুলিয়ান",
"code": "bool"
},
{
"definition": "স্ট্রিং",
"code": "string"
},
{
"definition":"পয়েন্টার টাইপ",
"code":"*type (যেকোনো ডাটা টাইপ, যেমন int, float, string)"
}
]
},
{
"title": "ইউজার ডিফাইন্ড ডাটা টাইপ",
"items": [{
"definition": "ভিন্ন ভিন্ন বিল্ট ইন ডাটা টাইপের সমন্বয়ে নতুন ডাটা টাইপ তৈরি করা",
"code": "struct"
}
]
},
{
"title": "ফাইল প্রিন্ট করা এবং ভ্যারিয়েবল ডিক্লেয়ার করা",
"items": [{
Expand Down Expand Up @@ -354,4 +390,4 @@
]
}
]
}
}