]> git.llucax.com Git - software/bife/bife++.git/blob - tests/test2_stringize.cpp
Added a basic string widget.
[software/bife/bife++.git] / tests / test2_stringize.cpp
1 //: C03:StringizingExpressions.cpp
2 #include <iostream>
3 #include <cassert>
4 using namespace std;
5 #define P(A) cout << #A << ": " << (A) << endl;
6 int main() {
7     int a = 1, b = 2, c = 3;
8     P(a); P(b); P(c);
9     P(a + b);
10     assert(a + b == 3); // corta el programa si a + b != 3
11     P((c - a)/b);
12 }