cg2 0.1.0

Rust code generator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[derive(Debug, Clone, Copy)]
#[repr(u8)]
pub enum Punct {
  Semi = b';',
  Dot = b'.',
  Comma = b',',
  Colon = b':',
  Hash = b'#',
  Star = b'*',
  LParen = b'(',
  RParen = b')',
  LBrace = b'[',
  RBrace = b']',
  LCurly = b'{',
  RCurly = b'}',
  Quote = b'"',
  SingleQuote = b'\'',
}