comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:a4671277546c
1 int v_int;
2 real v_float;
3 string v_string;
4 char v_char;
5 bool v_bool;
6
7 int v_int_V = 1;
8 real v_float_V = 1.0;
9 string v_string_V = "abcd";
10 char v_char_V = "a";
11 bool v_bool_V = true;