rested 0.11.0

Language/Interpreter for easily defining and running requests to an http server.
Documentation
---
source: tests/parser.rs
description: "let a = env(\"\")"
expression: ast
---
Program(
  source: "let a = env(\"\")",
  items: [
    Let(VariableDeclaration(
      identifier: Ok(Token(
        kind: Ident,
        text: "a",
        start: Position(
          value: 4,
          line: 0,
          col: 4,
        ),
      )),
      value: Call(CallExpr(
        identifier: Ok(Token(
          kind: Ident,
          text: "env",
          start: Position(
            value: 8,
            line: 0,
            col: 8,
          ),
        )),
        arguments: ExpressionList(
          span: Span(
            start: Position(
              value: 11,
              line: 0,
              col: 11,
            ),
            end: Position(
              value: 14,
              line: 0,
              col: 14,
            ),
          ),
          items: [
            This(String(StringLiteral(
              raw: "\"\"",
              value: "",
              span: Span(
                start: Position(
                  value: 12,
                  line: 0,
                  col: 12,
                ),
                end: Position(
                  value: 13,
                  line: 0,
                  col: 13,
                ),
              ),
            ))),
          ],
        ),
      )),
    )),
  ],
)