The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
245 B
15 lines
245 B
9 years ago
|
#include"ef.h"
|
||
|
|
||
|
#include<iostream>
|
||
|
|
||
|
int main(int, char **) {
|
||
|
Ef var;
|
||
|
if(var.get_x() == 99) {
|
||
|
std::cout << "All is fine.\n";
|
||
|
return 0;
|
||
|
} else {
|
||
|
std::cout << "Something went wrong.\n";
|
||
|
return 1;
|
||
|
}
|
||
|
}
|