Library

A shiny new library

Make it easy and fun to use your new library by including some module specific documentation here. It's always a good idea to include a minimal working example:

import LibraryTemplate "mo:library-template/Library";

assert(LibraryTemplate.isPalindrome("anna"));
assert(not LibraryTemplate.isPalindrome("christoph"));

public func isPalindrome(input : Text) : Bool

Checks whether the given input text is equal to itself when reversed.