Write a C++ class Const, Square, Print so that I can write, for example, Cost(5) >> Square() >> Inc() >> Inc() >> Print() and the resulting python program will print 27 to the screen.
Write a C++ class Const, Square, Print so that I can write, for example, Cost(5) >> Square() >> Inc() >> Inc() >> Print() and the resulting python program will print 27 to the screen.
Here is the implementation of the Const, Square, Print classes in C++:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | #include <iostream> class Const { private: int value; public: Const(int val) : value(val) {} friend class Square; }; class Square { public: Square& operator>>(Const& c) { c.value = c.value * c.value; return *this; } Square& operator>>(Print& p) { p.printValue(); return *this; } }; class Print { private: int value; public: Print() : value(0) {} void printValue() { std::cout << value << std::endl; } friend class Square; }; int main() { Const c(5); Square s; Print p; s >> c >> p; return 0; } |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | #include <iostream> class Const { private: int value; public: Const(int val) : value(val) {} friend class Square; }; class Square { public: Square& operator>>(Const& c) { c.value = c.value * c.value; return *this; } Square& operator>>(Print& p) { p.printValue(); return *this; } }; class Print { private: int value; public: Print() : value(0) {} void printValue() { std::cout << value << std::endl; } friend class Square; }; int main() { Const c(5); Square s; Print p; s >> c >> p; return 0; } |
Running the following program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | #include <iostream> class Const { private: int value; public: Const(int val) : value(val) {} friend class Square; }; class Square { public: Square& operator>>(Const& c) { c.value = c.value * c.value; return *this; } Square& operator>>(Print& p) { p.printValue(); return *this; } }; class Print { private: int value; public: Print() : value(0) {} void printValue() { std::cout << value << std::endl; } friend class Square; }; int __delete_this__main() { Const c(5); Square s; Print p; s >> c >> p; return 0; } int main() { Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print(); return 0; } |
main.cpp:20:24: error: 'Print' has not been declared
20 | Square& operator>>(Print& p) {
| ^~~~~
main.cpp: In member function 'Square& Square::operator>>(int&)':
main.cpp:21:11: error: request for member 'printValue' in 'p', which is of non-class type 'int'
21 | p.printValue();
| ^~~~~~~~~~
main.cpp: In function 'int __delete_this__main()':
main.cpp:44:12: error: no match for 'operator>>' (operand types are 'Square' and 'Print')
44 | s >> c >> p;
| ~~~~~~ ^~ ~
| | |
| Square Print
main.cpp:15:13: note: candidate: 'Square& Square::operator>>(Const&)'
15 | Square& operator>>(Const& c) {
| ^~~~~~~~
main.cpp:15:31: note: no known conversion for argument 1 from 'Print' to 'Const&'
15 | Square& operator>>(Const& c) {
| ~~~~~~~^
main.cpp:20:13: note: candidate: 'Square& Square::operator>>(int&)'
20 | Square& operator>>(Print& p) {
| ^~~~~~~~
main.cpp:20:31: note: no known conversion for argument 1 from 'Print' to 'int&'
20 | Square& operator>>(Print& p) {
| ~~~~~~~^
main.cpp: In function 'int main()':
main.cpp:52:10: error: no match for 'operator>>' (operand types are 'Const' and 'Square')
52 | Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print();
| ~~~~~~~~ ^~ ~~~~~~~~
| | |
| Const Square
main.cpp:52:25: error: 'Inc' was not declared in this scope
52 | Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print();
| ^~~
main.sh: line 2: ./a.out: No such file or directory
Testing if the previous output contains the string 625
: False
Write a C++ class Const, Square, Print so that I can write, for example, Cost(5) >> Square() >> Inc() >> Inc() >> Print() and the resulting python program will print 27 to the screen.
Write a C++ class Const, Square, Print so that I can write, for example, Cost(5) >> Square() >> Inc() >> Inc() >> Print() and the resulting python program will print 27 to the screen.
Here is the C++ code for the classes Const, Square, Print:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | #include <iostream> class Const { private: int value; public: Const(int val) : value(val) {} friend class Square; }; class Square { private: int value; public: Square() {} Square& operator>>(Const& c) { value = c.value * c.value; return *this; } Square& operator>>(Square& s) { value = s.value * s.value; return *this; } Square& operator>>(Print& p); friend class Print; }; class Print { public: Print() {} Print& operator>>(Square& s) { std::cout << s.value << std::endl; return *this; } }; Square& Square::operator>>(Print& p) { p >> *this; return *this; } int main() { Const c(5); Square s; Print p; c >> s >> s >> p; return 0; } |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | #include <iostream> class Const { private: int value; public: Const(int val) : value(val) {} friend class Square; }; class Square { private: int value; public: Square() {} Square& operator>>(Const& c) { value = c.value * c.value; return *this; } Square& operator>>(Square& s) { value = s.value * s.value; return *this; } Square& operator>>(Print& p); friend class Print; }; class Print { public: Print() {} Print& operator>>(Square& s) { std::cout << s.value << std::endl; return *this; } }; Square& Square::operator>>(Print& p) { p >> *this; return *this; } int main() { Const c(5); Square s; Print p; c >> s >> s >> p; return 0; } |
Running the following program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | #include <iostream> class Const { private: int value; public: Const(int val) : value(val) {} friend class Square; }; class Square { private: int value; public: Square() {} Square& operator>>(Const& c) { value = c.value * c.value; return *this; } Square& operator>>(Square& s) { value = s.value * s.value; return *this; } Square& operator>>(Print& p); friend class Print; }; class Print { public: Print() {} Print& operator>>(Square& s) { std::cout << s.value << std::endl; return *this; } }; Square& Square::operator>>(Print& p) { p >> *this; return *this; } int __delete_this__main() { Const c(5); Square s; Print p; c >> s >> s >> p; return 0; } int main() { Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print(); return 0; } |
main.cpp:29:24: error: 'Print' has not been declared
29 | Square& operator>>(Print& p);
| ^~~~~
main.cpp:44:9: error: no declaration matches 'Square& Square::operator>>(Print&)'
44 | Square& Square::operator>>(Print& p) {
| ^~~~~~
main.cpp:29:13: note: candidates are: 'Square& Square::operator>>(int&)'
29 | Square& operator>>(Print& p);
| ^~~~~~~~
main.cpp:24:13: note: 'Square& Square::operator>>(Square&)'
24 | Square& operator>>(Square& s) {
| ^~~~~~~~
main.cpp:19:13: note: 'Square& Square::operator>>(Const&)'
19 | Square& operator>>(Const& c) {
| ^~~~~~~~
main.cpp:13:7: note: 'class Square' defined here
13 | class Square {
| ^~~~~~
main.cpp: In function 'int __delete_this__main()':
main.cpp:54:7: error: no match for 'operator>>' (operand types are 'Const' and 'Square')
54 | c >> s >> s >> p;
| ~ ^~ ~
| | |
| | Square
| Const
main.cpp: In function 'int main()':
main.cpp:62:10: error: no match for 'operator>>' (operand types are 'Const' and 'Square')
62 | Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print();
| ~~~~~~~~ ^~ ~~~~~~~~
| | |
| Const Square
main.cpp:62:25: error: 'Inc' was not declared in this scope
62 | Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print();
| ^~~
main.sh: line 2: ./a.out: No such file or directory
Testing if the previous output contains the string 625
: False
Write a C++ class Const, Square, Print so that I can write, for example, Cost(5) >> Square() >> Inc() >> Inc() >> Print() and the resulting python program will print 27 to the screen.
Write a C++ class Const, Square, Print so that I can write, for example, Cost(5) >> Square() >> Inc() >> Inc() >> Print() and the resulting python program will print 27 to the screen.
Here is a C++ implementation of the `Const`, `Square`, `Print` classes as well as an `Inc` function:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | #include <iostream> class Const { private: int value; public: Const(int v) : value(v) {} friend std::ostream& operator>>(std::ostream& os, const Const& obj) { os << obj.value; return os; } }; class Square { public: Square() {} friend std::ostream& operator>>(std::ostream& os, const Square& obj) { return os; } }; void Inc(int& value) { value++; } class Print { public: Print() {} friend std::ostream& operator>>(std::ostream& os, const Print& obj) { os << std::endl; return os; } }; int main() { int value; Const(5) >> Square() >> Inc(value) >> Inc(value) >> Print(); std::cout << value << std::endl; return 0; } |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | #include <iostream> class Const { private: int value; public: Const(int v) : value(v) {} friend std::ostream& operator>>(std::ostream& os, const Const& obj) { os << obj.value; return os; } }; class Square { public: Square() {} friend std::ostream& operator>>(std::ostream& os, const Square& obj) { return os; } }; void Inc(int& value) { value++; } class Print { public: Print() {} friend std::ostream& operator>>(std::ostream& os, const Print& obj) { os << std::endl; return os; } }; int main() { int value; Const(5) >> Square() >> Inc(value) >> Inc(value) >> Print(); std::cout << value << std::endl; return 0; } |
Running the following program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #include <iostream> class Const { private: int value; public: Const(int v) : value(v) {} friend std::ostream& operator>>(std::ostream& os, const Const& obj) { os << obj.value; return os; } }; class Square { public: Square() {} friend std::ostream& operator>>(std::ostream& os, const Square& obj) { return os; } }; void Inc(int& value) { value++; } class Print { public: Print() {} friend std::ostream& operator>>(std::ostream& os, const Print& obj) { os << std::endl; return os; } }; int __delete_this__main() { int value; Const(5) >> Square() >> Inc(value) >> Inc(value) >> Print(); std::cout << value << std::endl; return 0; } int main() { Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print(); return 0; } |
main.cpp: In function 'int __delete_this__main()':
main.cpp:41:14: error: no match for 'operator>>' (operand types are 'Const' and 'Square')
41 | Const(5) >> Square() >> Inc(value) >> Inc(value) >> Print();
| ~~~~~~~~ ^~ ~~~~~~~~
| | |
| Const Square
main.cpp:10:26: note: candidate: 'std::ostream& operator>>(std::ostream&, const Const&)'
10 | friend std::ostream& operator>>(std::ostream& os, const Const& obj) {
| ^~~~~~~~
main.cpp:10:51: note: no known conversion for argument 1 from 'Const' to 'std::ostream&' {aka 'std::basic_ostream<char>&'}
10 | friend std::ostream& operator>>(std::ostream& os, const Const& obj) {
| ~~~~~~~~~~~~~~^~
main.cpp:20:26: note: candidate: 'std::ostream& operator>>(std::ostream&, const Square&)'
20 | friend std::ostream& operator>>(std::ostream& os, const Square& obj) {
| ^~~~~~~~
main.cpp:20:51: note: no known conversion for argument 1 from 'Const' to 'std::ostream&' {aka 'std::basic_ostream<char>&'}
20 | friend std::ostream& operator>>(std::ostream& os, const Square& obj) {
| ~~~~~~~~~~~~~~^~
main.cpp: In function 'int main()':
main.cpp:50:10: error: no match for 'operator>>' (operand types are 'Const' and 'Square')
50 | Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print();
| ~~~~~~~~ ^~ ~~~~~~~~
| | |
| Const Square
main.cpp:10:26: note: candidate: 'std::ostream& operator>>(std::ostream&, const Const&)'
10 | friend std::ostream& operator>>(std::ostream& os, const Const& obj) {
| ^~~~~~~~
main.cpp:10:51: note: no known conversion for argument 1 from 'Const' to 'std::ostream&' {aka 'std::basic_ostream<char>&'}
10 | friend std::ostream& operator>>(std::ostream& os, const Const& obj) {
| ~~~~~~~~~~~~~~^~
main.cpp:20:26: note: candidate: 'std::ostream& operator>>(std::ostream&, const Square&)'
20 | friend std::ostream& operator>>(std::ostream& os, const Square& obj) {
| ^~~~~~~~
main.cpp:20:51: note: no known conversion for argument 1 from 'Const' to 'std::ostream&' {aka 'std::basic_ostream<char>&'}
20 | friend std::ostream& operator>>(std::ostream& os, const Square& obj) {
| ~~~~~~~~~~~~~~^~
main.cpp:50:28: error: too few arguments to function 'void Inc(int&)'
50 | Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print();
| ~~~^~
main.cpp:25:6: note: declared here
25 | void Inc(int& value) {
| ^~~
main.sh: line 2: ./a.out: No such file or directory
Testing if the previous output contains the string 625
: False
Write a C++ class Const, Square, Print so that I can write, for example, Cost(5) >> Square() >> Inc() >> Inc() >> Print() and the resulting python program will print 27 to the screen.
Write a C++ class Const, Square, Print so that I can write, for example, Cost(5) >> Square() >> Inc() >> Inc() >> Print() and the resulting python program will print 27 to the screen.
Here is the implementation of the C++ classes Const, Square, Print, and Inc:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | #include <iostream> class Const { public: int value; Const(int val) : value(val) {} friend Const operator>>(Const c, Square s); }; class Square { public: int value; friend Const operator>>(Const c, Square s); friend Square operator>>(Square s, Print p); friend Square operator>>(Square s, Inc i); }; class Print { public: friend Square operator>>(Square s, Print p); }; class Inc { public: friend Square operator>>(Square s, Inc i); }; Const operator>>(Const c, Square s) { s.value = c.value * c.value; return c; } Square operator>>(Square s, Print p) { std::cout << s.value << std::endl; return s; } Square operator>>(Square s, Inc i) { s.value++; return s; } int main() { Const(5) >> Square() >> Inc() >> Inc() >> Print(); return 0; } |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | #include <iostream> class Const { public: int value; Const(int val) : value(val) {} friend Const operator>>(Const c, Square s); }; class Square { public: int value; friend Const operator>>(Const c, Square s); friend Square operator>>(Square s, Print p); friend Square operator>>(Square s, Inc i); }; class Print { public: friend Square operator>>(Square s, Print p); }; class Inc { public: friend Square operator>>(Square s, Inc i); }; Const operator>>(Const c, Square s) { s.value = c.value * c.value; return c; } Square operator>>(Square s, Print p) { std::cout << s.value << std::endl; return s; } Square operator>>(Square s, Inc i) { s.value++; return s; } int main() { Const(5) >> Square() >> Inc() >> Inc() >> Print(); return 0; } |
Running the following program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | #include <iostream> class Const { public: int value; Const(int val) : value(val) {} friend Const operator>>(Const c, Square s); }; class Square { public: int value; friend Const operator>>(Const c, Square s); friend Square operator>>(Square s, Print p); friend Square operator>>(Square s, Inc i); }; class Print { public: friend Square operator>>(Square s, Print p); }; class Inc { public: friend Square operator>>(Square s, Inc i); }; Const operator>>(Const c, Square s) { s.value = c.value * c.value; return c; } Square operator>>(Square s, Print p) { std::cout << s.value << std::endl; return s; } Square operator>>(Square s, Inc i) { s.value++; return s; } int __delete_this__main() { Const(5) >> Square() >> Inc() >> Inc() >> Print(); return 0; } int main() { Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print(); return 0; } |
main.cpp:10:38: error: 'Square' has not been declared
10 | friend Const operator>>(Const c, Square s);
| ^~~~~~
main.cpp:18:40: error: 'Print' has not been declared
18 | friend Square operator>>(Square s, Print p);
| ^~~~~
main.cpp:19:40: error: 'Inc' has not been declared
19 | friend Square operator>>(Square s, Inc i);
| ^~~
main.cpp: In function 'int __delete_this__main()':
main.cpp:48:26: error: no match for 'operator>>' (operand types are 'Const' and 'Inc')
48 | Const(5) >> Square() >> Inc() >> Inc() >> Print();
| ~~~~~~~~~~~~~~~~~~~~ ^~ ~~~~~
| | |
| Const Inc
main.cpp:32:7: note: candidate: 'Const operator>>(Const, Square)'
32 | Const operator>>(Const c, Square s) {
| ^~~~~~~~
main.cpp:32:34: note: no known conversion for argument 2 from 'Inc' to 'Square'
32 | Const operator>>(Const c, Square s) {
| ~~~~~~~^
main.cpp:37:8: note: candidate: 'Square operator>>(Square, Print)'
37 | Square operator>>(Square s, Print p) {
| ^~~~~~~~
main.cpp:37:26: note: no known conversion for argument 1 from 'Const' to 'Square'
37 | Square operator>>(Square s, Print p) {
| ~~~~~~~^
main.cpp:42:8: note: candidate: 'Square operator>>(Square, Inc)'
42 | Square operator>>(Square s, Inc i) {
| ^~~~~~~~
main.cpp:42:26: note: no known conversion for argument 1 from 'Const' to 'Square'
42 | Square operator>>(Square s, Inc i) {
| ~~~~~~~^
main.cpp:10:18: note: candidate: 'Const operator>>(Const, int)'
10 | friend Const operator>>(Const c, Square s);
| ^~~~~~~~
main.cpp:10:45: note: no known conversion for argument 2 from 'Inc' to 'int'
10 | friend Const operator>>(Const c, Square s);
| ~~~~~~~^
main.cpp: In function 'int main()':
main.cpp:56:22: error: no match for 'operator>>' (operand types are 'Const' and 'Inc')
56 | Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print();
| ~~~~~~~~~~~~~~~~~~~~ ^~ ~~~~~
| | |
| Const Inc
main.cpp:32:7: note: candidate: 'Const operator>>(Const, Square)'
32 | Const operator>>(Const c, Square s) {
| ^~~~~~~~
main.cpp:32:34: note: no known conversion for argument 2 from 'Inc' to 'Square'
32 | Const operator>>(Const c, Square s) {
| ~~~~~~~^
main.cpp:37:8: note: candidate: 'Square operator>>(Square, Print)'
37 | Square operator>>(Square s, Print p) {
| ^~~~~~~~
main.cpp:37:26: note: no known conversion for argument 1 from 'Const' to 'Square'
37 | Square operator>>(Square s, Print p) {
| ~~~~~~~^
main.cpp:42:8: note: candidate: 'Square operator>>(Square, Inc)'
42 | Square operator>>(Square s, Inc i) {
| ^~~~~~~~
main.cpp:42:26: note: no known conversion for argument 1 from 'Const' to 'Square'
42 | Square operator>>(Square s, Inc i) {
| ~~~~~~~^
main.cpp:10:18: note: candidate: 'Const operator>>(Const, int)'
10 | friend Const operator>>(Const c, Square s);
| ^~~~~~~~
main.cpp:10:45: note: no known conversion for argument 2 from 'Inc' to 'int'
10 | friend Const operator>>(Const c, Square s);
| ~~~~~~~^
main.sh: line 2: ./a.out: No such file or directory
Testing if the previous output contains the string 625
: False
Write a C++ class Const, Square, Print so that I can write, for example, Cost(5) >> Square() >> Inc() >> Inc() >> Print() and the resulting python program will print 27 to the screen.
Write a C++ class Const, Square, Print so that I can write, for example, Cost(5) >> Square() >> Inc() >> Inc() >> Print() and the resulting python program will print 27 to the screen.
Here is the C++ code for the classes Const, Square, Print:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #include <iostream> class Const { private: int value; public: Const(int val) : value(val) {} int getValue() const { return value; } }; class Square { public: void operator>>(const Const& c) { int result = c.getValue() * c.getValue(); Const square(result); square >> Print(); } }; class Print { public: void operator>>(const Const& c) { std::cout << c.getValue() << std::endl; } }; int main() { Const(5) >> Square(); return 0; } |
1 | 25
|
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #include <iostream> class Const { private: int value; public: Const(int val) : value(val) {} int getValue() const { return value; } }; class Square { public: void operator>>(const Const& c) { int result = c.getValue() * c.getValue(); Const square(result); square >> Print(); } }; class Print { public: void operator>>(const Const& c) { std::cout << c.getValue() << std::endl; } }; |
Running the following program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #include <iostream> class Const { private: int value; public: Const(int val) : value(val) {} int getValue() const { return value; } }; class Square { public: void operator>>(const Const& c) { int result = c.getValue() * c.getValue(); Const square(result); square >> Print(); } }; class Print { public: void operator>>(const Const& c) { std::cout << c.getValue() << std::endl; } }; int main() { Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print(); return 0; } |
main.cpp: In member function 'void Square::operator>>(const Const&)':
main.cpp:20:19: error: 'Print' was not declared in this scope; did you mean 'printf'?
20 | square >> Print();
| ^~~~~
| printf
main.cpp: In function 'int main()':
main.cpp:34:10: error: no match for 'operator>>' (operand types are 'Const' and 'Square')
34 | Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print();
| ~~~~~~~~ ^~ ~~~~~~~~
| | |
| Const Square
main.cpp:34:25: error: 'Inc' was not declared in this scope
34 | Const(2) >> Square() >> Inc() >> Square() >> Square() >> Print();
| ^~~
main.sh: line 2: ./a.out: No such file or directory
Testing if the previous output contains the string 625
: False