Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 2.05 KB

README.md

File metadata and controls

52 lines (38 loc) · 2.05 KB

bottom-java

Build Status LICENSE JitPack docs

A Gradle library for bottom, following the bottom spec.

Javadocs here

Installing

You can install bottom from JitPack

Quick Example

import com.github.bottomSoftwareFoundation.bottom.Bottom;

public class Main {
    public static void main(String[] args) {
        String string = "Hello world!";
        String bottom = Bottom.encode(string);
        String decoded = Bottom.decode(bottom);
        
        System.out.println(string);
        // Hello world!
        System.out.println(bottom);
        // 💖✨✨,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖🥺,,,👉👈💖💖👉👈✨✨✨,,,👉👈
        System.out.println(decoded);
        // Hello world!
    }
}

More bottom

https://github.com/bottom-software-foundation/awesome-bottom

Why?

Learning project for Gradle, JUnit4, Github Actions, and JitPack.