KLL Compiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

simple2.kll 548B

1234567891011121314151617181920212223
  1. Name = colemak;
  2. Author = "HaaTa (Jacob Alexander) 2014";
  3. KLL = 0.3;
  4. usbKeyOut => Output_usbCodeSend_capability( usbCode : 1 );
  5. myCapability2 => myFunc2();
  6. myCapability3 => myFunc3( myArg1 : 2 );
  7. myCapability => myFunc( myArg1 : 1, myArg2 : 4 );
  8. S0x3 : myCapability2();
  9. S0x4 : myCapability( 0x8, 0x25 );
  10. S0x12 : U[122] + U[123];
  11. S0x6 : 'abcdDfF';
  12. S0x40 : U[0x1];
  13. S0x40 : U[0x1-0x4];
  14. S0x0B : U["Esc"];
  15. S0x0B :+ U["Q"];
  16. S[ 0x7 - 0x9 ] : U"6";
  17. S[ 0x7 - 0x9 ], S[0x2,0x3] : U"6";
  18. S[ 0x2 - 0x9, 0x10 ] :+ U"r";
  19. S0x0B :- U["Esc"];
  20. S127 + S128 : U"0";