// langytypes.C #include Value& Value::operator=(const Value& val) { v = val.v; _s = val._s; strcpy(_buf, val._buf); _type = val._type; return *this; }