1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00

Create README.md

This commit is contained in:
Ivar Conradi Østhus 2014-10-23 21:51:10 +02:00
parent 8dda2e4b2b
commit 79725aaec5

View File

@ -0,0 +1,13 @@
# The Unleash Client 4 Java
# API
It is really simple to use unleash.
```java
if(unleash.isEnabled("AwesomeFeature")) {
//do some magic
} else {
//do old boring stuff
}
```