/* Copyright (c) 2013 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Soonho Kong */ #include #include #include "format.h" #include "test.h" #include "sexpr_funcs.h" using namespace lean; using std::cout; using std::endl; static void tst1() { format f_atom1("foo"); format f_atom2("bar"); format f_atom3(1); format f_atom4(3.1415); format f1(highlight(f_atom1), f_atom2); // format f2{f_atom1, f_atom2, highlight(f_atom3, format::format_color::ORANGE), f_atom4}; format f2{f_atom1, highlight(f_atom3, format::format_color::ORANGE)}; format f3 = compose(f1, f2); format f4 = nest(3, f3); format f5 = line(); format f6(f4, f5); format f7 = nest(10, format{f6, f4, f6, f4}); // format f8(f_atom1, nest(3, format(line(), f_atom1))); format f8 = f7; format f9 = f7 + f8; format f10; f10 += f6 + f5 + f3; format f11 = above(f1, above(above(f2, f3), f4)); std::vector > v = {{"f1", f1}, {"f2", f2}, {"f3", f3}, {"f4", f4}, {"f5", f5}, {"f6", f6}, {"f7", f7}, {"f8", f8}, {"f9", f9}, {"f10", f10}, {"f11", f11}, }; std::for_each(v.begin(), v.end(), [](std::pair const & p) { cout << "---- " << p.first << " ----------" << endl << p.second << endl << "--------------------" << endl << endl; }); // std::vector ss = {"Last", "weekend's", "revelation", "that", "J.K.", "Rowling", "is", "the", "author", "of", "the", "critically", "acclaimed", "and", "--", "until", "now", "--", "commercially", "unsuccessful", "crime", "novel", "The", "Cuckoo's", "Calling", "has", "electrified", "the", "book", "world", "and", "solidified", "Rowling's", "reputation", "as", "a", "genuine", "writing", "talent:", "After", "all,", "if", "she", "can", "impress", "the", "critics", "without", "the", "benefit", "of", "her", "towering", "reputation,", "then", "surely", "her", "success", "is", "deserved."}; std::vector ss = {"Last", "weekend's", "revelation", "that", "J.K.", "Rowling", "is", "the", "author", "of", "the", "critically", "acclaimed"}; std::vector sl = {f1, f2, f3, f4}; cout << "fill" << endl; cout << std::string(40, '=') << endl; pretty(cout, 60, fill(sl.begin(), sl.end())); cout << endl; cout << std::string(40, '=') << endl; cout << "stack" << endl; cout << std::string(40, '=') << endl; pretty(cout, 60, stack(sl.begin(), sl.end())); cout << endl; cout << std::string(40, '=') << endl; cout << "spread" << endl; cout << std::string(40, '=') << endl; pretty(cout, 60, spread(sl.begin(), sl.end())); cout << endl; cout << std::string(40, '=') << endl; // cout << fill(ss.begin(), ss.end()) << endl; return; } int main() { continue_on_violation(true); tst1(); return has_violations() ? 1 : 0; }