Skip to content
Snippets Groups Projects
Select Git revision
  • 2270c9ec24491ec7d44bf3d5273bead1d0a873a3
  • master default
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.1
  • v2014.0
  • v2013.0
10 results

simple.lc

Blame
  • Forked from Anders Blomdell / LabComm
    Source project has a limited visibility.
    simple.lc 356 B
    sample int an_int;
    sample int a_fixed_int_array[2];
    sample int a_fixed_int_multi_array[2, 2, 2];
    sample int a_fixed_int_array_array_array[2][2][2];
    sample int a_variable_int_array[_];
    sample int a_variable_int_multi_array[_, _, _];
    sample int a_variable_int_array_array_array[_][_][_];
    sample struct {
      int a;
      int b;
    } an_int_struct;
    sample void a_void;