1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//! Romulus is a text processing language similar to sed
//!
//! Here is an example program which process the output of ifconfig
//! ```text
//! /^(?P<inter>[a-zA-Z0-9]+): /,/^[a-zA-Z0-9]+:/ {
//! /inet (?P<ip>[0-9]{1,3}(\.[0-9]{1,3}){3})/ {
//! print("${inter}: ${ip}")
//! }
//!
//! /inet6 (?P<ip>[a-fA-F0-9]{0,4}(:[a-fA-F0-9]{0,4}){0,8})/ {
//! print("${inter}: ${ip}")
//! }
//! }
//! ```
//!
/// A macro that expands to the proper line ending character sequence
/// for operating system
/// A macro that expands to a colored output if romulus is compiled
/// with color support
extern crate lazy_static;
pub use *;
pub use ;