You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: data/kotlin.json
+54Lines changed: 54 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,22 @@
53
53
{
54
54
"definition": "ক্যারেকটার",
55
55
"code": "val c: Char = ‘s’"
56
+
},
57
+
{
58
+
"definition": "বহু লাইনের স্ট্রিং যুক্তকরন",
59
+
"code": "val text = """
60
+
|First Line
61
+
|Second Line
62
+
|Third Line
63
+
""".trimMargin()"
64
+
},
65
+
{
66
+
"definition": "সাব স্ট্রিং করুন",
67
+
"code": "substr = str.substring(8..13)"
56
68
}
69
+
70
+
71
+
57
72
]
58
73
},
59
74
{
@@ -94,6 +109,45 @@
94
109
"definition": "লেট স্কোপ ফাংশন ,নাল চেক করার জন্য ",
95
110
"code": " mediaString?.let { media ->\n\t//do your opeartion you want to do on mediaString object.But use \"media\" in stead of mediaString. It is an alternative of \"if(mediaString != null){}\" in java\n}"
0 commit comments