6454917b11
- Variable support is not complete - However PartialMap support is basically ready
31 lines
740 B
Plaintext
31 lines
740 B
Plaintext
Name = colemak;
|
|
Author = "HaaTa (Jacob Alexander) 2014";
|
|
KLL = 0.3;
|
|
mydefine = "stuffs here";
|
|
mydefine2 = '"stuffs here"'; # For outputting c define strings
|
|
mynumber = 414;
|
|
|
|
mydefine => myCdef;
|
|
mydefine2 => myCdef2;
|
|
mydefine3 => myCdef3;
|
|
mynumber => myCnumber;
|
|
usbKeyOut => Output_usbCodeSend_capability( usbCode : 1 );
|
|
myCapability2 => myFunc2();
|
|
myCapability3 => myFunc3( myArg1 : 2 );
|
|
myCapability => myFunc( myArg1 : 1, myArg2 : 4 );
|
|
|
|
S0x3 : myCapability2();
|
|
S0x4 : myCapability( 0x8, 0x25 );
|
|
S0x12 : U[122] + U[123];
|
|
S0x6 : 'abcdDfF';
|
|
S0x40 : U[0x1];
|
|
S0x40 : U[0x1-0x4];
|
|
S0x0B : U["Esc"];
|
|
S0x0B :+ U["Q"];
|
|
S[ 0x7 - 0x9 ] : U"6";
|
|
S[ 0x7 - 0x9 ], S[0x2,0x3] : U"6";
|
|
S[ 0x2 - 0x9, 0x10 ] :+ U"r";
|
|
S0x0B :- U["Esc"];
|
|
S127 + S128 : U"0";
|
|
|