diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2021-01-16 01:46:12 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2021-01-16 01:46:12 +0100 |
| commit | e4c01e1c86bd9035750d91762f7a0868f0f56d54 (patch) | |
| tree | f41bdad633874a94c84b6d54695a6bf95b0eb317 /tests/variables.tdy | |
| parent | 85b12e35035af28a20d70b1fe3b319156004b24b (diff) | |
| download | sylt-e4c01e1c86bd9035750d91762f7a0868f0f56d54.tar.gz | |
move some tests to strings and test_multiple!
Diffstat (limited to 'tests/variables.tdy')
| -rw-r--r-- | tests/variables.tdy | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/variables.tdy b/tests/variables.tdy deleted file mode 100644 index 74d8cdd..0000000 --- a/tests/variables.tdy +++ /dev/null @@ -1,24 +0,0 @@ -// a variable -a : int = 1 -a <=> 1 - -// another variable -b : int = 2 -b <=> 2 - -// assignment -a = b -a <=> 2 - -// ordering -c : int = 3 -d : int = 4 -c <=> 3 -d <=> 4 - -// No types - -e := 1 -f := e + 1 -e <=> 1 -f <=> 2 |
