Init new repository

This commit is contained in:
Krzosa Karol
2024-04-13 15:29:53 +02:00
commit 5a2e3dcec4
335 changed files with 61571 additions and 0 deletions

14
tests/simulated_enum.txt Normal file
View File

@@ -0,0 +1,14 @@
// #dont_run
THING_A :: 0;
THING_B :: ^;
THING_C :: ^;
THING_D :: ^;
THING_E :: 6;
THING_F :: ^;
#static_assert(THING_A == 0);
#static_assert(THING_B == 1);
#static_assert(THING_C == 2);
#static_assert(THING_D == 3);
#static_assert(THING_E == 6);
#static_assert(THING_F == 7);