19 lines
780 B
C++
19 lines
780 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;
|
|
std::cout << "var1: [" << global.variables.size() << "]" << std::endl;
|
|
global.variables[keywords["name"]] = container;
|
|
std::cout << "var2: [" << global.variables.size() << "]" << std::endl;
|
|
std::cout << "varx: [" << global.variables["varname"] << "]" << std::endl;
|
|
}
|
|
|
|
}
|