Files
not-python/runtime/src/obj/str.rs
Alek Ratzloff 178ed4a952 Initial commit
Includes: runtime base from a previous project, syn(tax) module with
parser and lexer

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2020-09-01 17:32:48 -07:00

12 lines
153 B
Rust

use crate::obj::prelude::*;
use shredder::Scan;
#[derive(Debug, Scan)]
pub struct Str {
value: String,
attrs: Attrs,
}
impl_obj!(Str, attrs);