=============================================================
Basic feature with floating point numbers in step definitions
=============================================================

Feature: This is the name of a feature
  Scenario: This is the title of a scenario
    Given this 0.5 of a given step
    And this is an other 0.5 of a given step
    When this is a when step
    Then this is a then step

---

(feature
  (feature_keyword)
  (title)
  (scenarios
    (scenario
      (scenario_keyword)
      (title)
      (steps
        (given_steps
          (given_step
            (given_keyword)
            (step_definition)
          )
          (additional_step
            (additional_step_keyword
              (and_keyword)
            )
            (step_definition)
          )
        )
        (when_step
          (when_keyword)
          (step_definition)
        )
        (then_steps
          (then_step
            (then_keyword)
            (step_definition)
          )
        )
      )
    )
  )
)