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 740B

123456789101112131415161718192021222324252627282930
  1. Name = colemak;
  2. Author = "HaaTa (Jacob Alexander) 2014";
  3. KLL = 0.3;
  4. mydefine = "stuffs here";
  5. mydefine2 = '"stuffs here"'; # For outputting c define strings
  6. mynumber = 414;
  7. mydefine => myCdef;
  8. mydefine2 => myCdef2;
  9. mydefine3 => myCdef3;
  10. mynumber => myCnumber;
  11. usbKeyOut => Output_usbCodeSend_capability( usbCode : 1 );
  12. myCapability2 => myFunc2();
  13. myCapability3 => myFunc3( myArg1 : 2 );
  14. myCapability => myFunc( myArg1 : 1, myArg2 : 4 );
  15. S0x3 : myCapability2();
  16. S0x4 : myCapability( 0x8, 0x25 );
  17. S0x12 : U[122] + U[123];
  18. S0x6 : 'abcdDfF';
  19. S0x40 : U[0x1];
  20. S0x40 : U[0x1-0x4];
  21. S0x0B : U["Esc"];
  22. S0x0B :+ U["Q"];
  23. S[ 0x7 - 0x9 ] : U"6";
  24. S[ 0x7 - 0x9 ], S[0x2,0x3] : U"6";
  25. S[ 0x2 - 0x9, 0x10 ] :+ U"r";
  26. S0x0B :- U["Esc"];
  27. S127 + S128 : U"0";