mirror of
https://github.com/Kapendev/parin.git
synced 2025-04-25 20:49:57 +03:00
20 lines
593 B
D
20 lines
593 B
D
// Copyright 2024 Alexandros F. G. Kapretsos
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
module popka.core.basic;
|
|
|
|
/// The basic module acts as a central hub,
|
|
/// bundling together numerous specialized modules
|
|
/// to provide an extensive array of tools catering to a variety of programming tasks.
|
|
|
|
public import popka.core.ascii;
|
|
public import popka.core.color;
|
|
public import popka.core.container;
|
|
public import popka.core.fmt;
|
|
public import popka.core.io;
|
|
public import popka.core.math;
|
|
public import popka.core.strconv;
|
|
public import popka.core.strutils;
|
|
public import popka.core.sumtype;
|
|
|
|
unittest {}
|