Skip to content

Commit 1a0c38f

Browse files
Update README.md
1 parent 5e1dc17 commit 1a0c38f

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

README.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
> Let's access emoji like Enum and print it easily 😎
44
5+
* Java
6+
```java
7+
System.out.printf("Damn it! Who writes these shit %s%s%s%n",Emoji.PILE_OF_POO,Emoji.PILE_OF_POO,Emoji.PILE_OF_POO);
8+
```
9+
10+
* Kotlin
11+
```kotlin
12+
println("Damn it! Who writes these shit ${Emoji.PILE_OF_POO}${Emoji.PILE_OF_POO}${Emoji.PILE_OF_POO}")
13+
```
14+
15+
<img width="404" alt="CleanShot 2022-05-26 at 13 32 31@2x" src="https://user-images.githubusercontent.com/6296280/170422970-f5a9f4bc-21c9-4a3d-8eac-2c184105dbd4.png">
16+
517
# For Gradle Dependency
618

719
```groovy
@@ -27,16 +39,3 @@ dependencies {
2739
implementation("com.github.PureFuncInc:emoji-jvm-string:1.0.0")
2840
}
2941
```
30-
31-
# How to use
32-
33-
* Java
34-
```java
35-
System.out.printf("Damn it! Who write these shit %s%s%s%n",Emoji.PILE_OF_POO,Emoji.PILE_OF_POO,Emoji.PILE_OF_POO);
36-
```
37-
38-
* Kotlin
39-
```kotlin
40-
println("Damn it! Who write these shit ${Emoji.PILE_OF_POO}${Emoji.PILE_OF_POO}${Emoji.PILE_OF_POO}")
41-
```
42-

0 commit comments

Comments
 (0)