view 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 source
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;