File: visualTest.cpp

package info (click to toggle)
rang 3.2.0-1
  • links: PTS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 148 kB
  • sloc: cpp: 849; python: 33; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "rang.hpp"
#include <string>

using namespace std;
using namespace rang;

int main()
{
    cout << endl
         << style::reset << bg::green << fg::gray << style::bold
         << " Rang works! " << bg::reset << fg::reset << style::reset << '\n'
         << endl;
}