We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2fccb commit 529c6a5Copy full SHA for 529c6a5
README.md
@@ -1,3 +1,33 @@
1
# emoji-jvm-string
2
3
-emoji-jvm-string desc
+> Let's access emoji like Enum and print it easily 😎
4
+
5
+# For Maven Dependency
6
7
+# For Gradle Kotlin Dependency
8
9
+```kotlin
10
+repositories {
11
+ maven {
12
+ url = uri("https://jitpack.io")
13
+ }
14
+}
15
16
+dependencies {
17
+ implementation("net.purefunc:emoji-jvm-string:1.0.0")
18
19
+```
20
21
+# How to use
22
23
+* Java
24
25
+```java
26
27
28
+* Kotlin
29
30
31
+println("Damn it! Who write these shit ${Emoji.PILE_OF_POO}${Emoji.PILE_OF_POO}${Emoji.PILE_OF_POO}")
32
33
0 commit comments