diff options
Diffstat (limited to 'js/scripting-lang/baba-yaga-c/tests/01_lexer_basic.txt')
-rw-r--r-- | js/scripting-lang/baba-yaga-c/tests/01_lexer_basic.txt | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/js/scripting-lang/baba-yaga-c/tests/01_lexer_basic.txt b/js/scripting-lang/baba-yaga-c/tests/01_lexer_basic.txt deleted file mode 100644 index 90693f1..0000000 --- a/js/scripting-lang/baba-yaga-c/tests/01_lexer_basic.txt +++ /dev/null @@ -1,25 +0,0 @@ -/* Unit Test: Basic Lexer Functionality */ -/* Tests: Numbers, identifiers, operators, keywords */ - -/* Test numbers */ -x : 42; -y : 3.14; -z : 0; - -/* Test identifiers */ -name : "test"; -flag : true; -value : false; - -/* Test basic operators */ -sum : x + y; -diff : x - y; -prod : x * y; -quot : x / y; - -/* Test keywords */ -result : when x is - 42 then "correct" - _ then "wrong"; - -..out "Lexer basic test completed"; \ No newline at end of file |