Welcome to the first release of the Print library for Deno! 🎉
This minimalistic, zero-dependency printing library allows you to print any string to the console with a simple function call. We're excited to share this initial version with the Deno community.
- Zero dependencies: Keep your project lightweight and fast.
- Simple function: Just call
print()
to output a string to the console. - Deno compatibility: Works seamlessly with Deno projects.
To start using the Print library in your Deno project, simply import it as follows:
import { print } from "https://deno.land/x/print/mod.js";
Using the Print library is as simple as calling the print()
function:
import { print } from "https://deno.land/x/print/mod.js";
print("Hello, world!"); // Outputs: Hello, world!
- Initial release.
We welcome your feedback and contributions! Feel free to open an issue on our GitHub repository or submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for more details.
We hope you enjoy using the Print library for Deno! 🖨️