diff --git a/.github/workflows/functional-tests.yml b/.github/workflows/functional-tests.yml index b73c8e9..059a759 100644 --- a/.github/workflows/functional-tests.yml +++ b/.github/workflows/functional-tests.yml @@ -60,8 +60,9 @@ jobs: uses: ./ with: version: "${{ matrix.version }}" - - name: Print version - run: uiua --version + - name: Validate command + run: | + [ "$(uiua run hello-world.ua)" = '"Hello, World"' ] || exit 1 test-force: name: Test force runs-on: ubuntu-latest diff --git a/README.md b/README.md index 0ca64f2..bfb9f0a 100644 --- a/README.md +++ b/README.md @@ -45,3 +45,7 @@ None. |-----------|-----------------------------------|---------| | installed | Whether Uiua was installed or not | `true` | + +## Contributions + +![Alt](https://repobeats.axiom.co/api/embed/d84692b9fb0ec9a6f1b0a28d840e66fb7361e0b1.svg "Repobeats analytics image") diff --git a/hello-world.ua b/hello-world.ua new file mode 100644 index 0000000..677e868 --- /dev/null +++ b/hello-world.ua @@ -0,0 +1,2 @@ +👋 ← ⊂"Hello, " +👋"World"