mirror of
https://github.com/Kapendev/parin.git
synced 2025-04-26 21:19:56 +03:00
15 lines
428 B
D
15 lines
428 B
D
// Copyright 2024 Alexandros F. G. Kapretsos
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
/// The basic module acts as a central hub,
|
|
/// bundling together numerous specialized modules.
|
|
|
|
module popka.core.basic;
|
|
|
|
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;
|