(Japanese, UTF-8)
N88-BASIC風のPRINT USING
文をエミュレートするC++11のプログラム兼ライブラリを製作しました。
PRINT USING
の動作を精巧に再現しています。
print_using.h
を#include
する。libprint_using.a
をリンクする。- C++コンパイラやCMakeなどを使ってビルドする。
print_using.h
の中の関数宣言を読み、使えそうな関数を呼び出して使ってみる。
- Copyright (C) 2024 katahiromz.
- License: MIT
- 本ソフトウェアは無保証です。
- 片山博文MZ [email protected]
(English)
I have created a program and library that emulates the N88-BASIC-like PRINT USING
statement in C++11.
It precisely reproduces the behavior of PRINT USING
.
#include
theprint_using.h
.- Link the
libprint_using.a
. - Build using a C++ compiler and/or CMake.
- Read the function declarations in
print_using.h
and try calling the functions that seem useful.
- Copyright (C) 2024 katahiromz.
- License: MIT
- This software is provided "as-is" without any warranty.
- Katayama Hirofumi MZ [email protected]