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.

capabilitiesExample.kll 257B

12345678910
  1. Name = ExampleModule;
  2. Author = "HaaTa (Jacob Alexander) 2014";
  3. KLL = 0.3;
  4. myCapability2 => myFunc2();
  5. myCapability3 => myFunc2( myArg1 : 2 );
  6. myCapability => myFunc( myArg1 : 1, myArg2 : 4 );
  7. usbKeyOut => Output_usbCodeSend_capability( usbCode : 1 );