add-ed 0.6.0

Embeddable pure rust editor based on ED
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub fn parse_expressions(input: &str)
  -> Vec<&str>
{
  let separator = match input.chars().next() {
    Some(ch) => ch,
    None => return Vec::new(),
  };
  input[1..]
    .split(separator)
    .collect()
}