Skip to content

Latest commit

Β 

History

History
17 lines (11 loc) Β· 518 Bytes

README.md

File metadata and controls

17 lines (11 loc) Β· 518 Bytes

Bottom

This is a Dart implementation of bottom.

Bottom encodes UTF-8 text into a sequence comprised of bottom emoji (πŸ«‚βœ¨πŸ₯Ίβ€οΈ, with , sprinkled in for good measure) followed by πŸ‘‰πŸ‘ˆ. It can encode any valid UTF-8 β€” being a bottom transcends language, after all β€” and decode back into UTF-8.

Usage

Here's a simple example:

import 'package:bottom/bottom.dart';

void main(List<String> args) {
  print(bottom.encode(args.join(' ')));
}