initial commit

This commit is contained in:
2026-06-02 05:47:46 +02:00
commit 736b0fc1f4
8 changed files with 534 additions and 0 deletions
Executable
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -euo pipefail
MAIN_DIR=$(realpath -e "$(dirname "$0")")
source "$MAIN_DIR/src/lib.sh"
std::assert "1 is 1" 1 -eq 1
# shellcheck disable=2251
! std::assert "(ok) 1 is not 2" 1 -eq 2 &>/dev/null
std::assert-eq "1 is 1" 1 1
# shellcheck disable=2251
! std::assert-eq "1 is not 2" 1 2 &>/dev/null
std::wprintln "warn print"
std::eprintln "error print"