First Release
December 2020 (version 1.0.1)
First Release: v1.0.1
Welcome to the December 2020 release of String Library.
Get started
- Download the
source code
, and then, - Paste the header files usastring.h , usastringfunctool.h and Resources in your project directory where your
source.cpp
ormain.cpp
files are present. - Include
usastring
header file in yoursource.cpp
ormain.cpp
file like#include"usastring.h"
.
#include <iostream>
#include "usastring.h"
using namespace std;
int main()
{
usa::string str = "Hello World!";
cout << str.toUpperCase() << endl;
return 0;
}