fazer arquivo
all: one two three
one:
touch one
two:
touch two
three:
touch three
clean:
rm -f one two three
Proud Panther
all: one two three
one:
touch one
two:
touch two
three:
touch three
clean:
rm -f one two three
#include <fstream>
int main() {
std::ofstream output("example.txt");
output << "The answer to life, the universe, and everything is ";
output << 42;
}