17 lines
542 B
C++
17 lines
542 B
C++
#include "__set.h"
|
|
#include "Exception.h"
|
|
#include <iostream>
|
|
|
|
namespace jet {
|
|
|
|
__set::__set(coreutils::ZString &in, coreutils::MString &out, Global &global) : Tag(in, out, global) {
|
|
std::cout << "name: [" << keywords["name"] << "]" << std::endl;
|
|
std::cout << "value: [" << keywords["value"] << "]" << std::endl;
|
|
std::cout << "container: [" << container << "]" << std::endl;
|
|
std::cout << "scope: [" << keywords["scope"] << "]" << std::endl;
|
|
global.variables[name] = container;
|
|
|
|
}
|
|
|
|
}
|