#include <iostream>
#include "uCalc.h"

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uCalc::String text = "This is foo";
   text.Replace("foo", "bar"); // 'text' is now modified
   cout << text << endl;
}