bottom-software-foundation / bottom-java

πŸ₯Ί

Home Page:https://bottom-software-foundation.github.io/bottom-java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

πŸ₯Ί

https://bottom-software-foundation.github.io/bottom-java

License:MIT License


Languages

Language:Java 100.0%