meow_forth 0.1.0

A Forth interpreter
Documentation
image: rust:latest
stages:
  - test

before_script:
  - apt-get update -yqq
  - apt-get install -yqq build-essential
  - rustup default nightly-2020-05-07
  - rustc --version && cargo --version

test:std:
  stage: test

  script:
    - cargo test --all --verbose

test:no_std:
  stage: test

  script:
    - cargo test --all --verbose --no-default-features