Skip to content

First Release

Compare
Choose a tag to compare
@Usama-Azad Usama-Azad released this 25 Dec 09:06
· 9 commits to master since this release

December 2020 (version 1.0.1)

First Release: v1.0.1
Welcome to the December 2020 release of String Library.

Get started

  1. Download the source code, and then,
  2. Paste the header files usastring.h , usastringfunctool.h and Resources in your project directory where your source.cpp or main.cpp files are present.
  3. Include usastring header file in your source.cpp or main.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;
}