Mercurial > thymian
diff tests/script/test_var_def.nap @ 0:a4671277546c tip
created the repository for the thymian project
| author | ferencd |
|---|---|
| date | Tue, 17 Aug 2021 11:19:54 +0200 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/script/test_var_def.nap Tue Aug 17 11:19:54 2021 +0200 @@ -0,0 +1,11 @@ +int v_int; +real v_float; +string v_string; +char v_char; +bool v_bool; + +int v_int_V = 1; +real v_float_V = 1.0; +string v_string_V = "abcd"; +char v_char_V = "a"; +bool v_bool_V = true;
