about summary refs log tree commit diff stats
path: root/kernel.soso/keyboard.h
blob: 0f28e9e3b1e4efeb7b6904a86ed4d5f269d8f08a (plain) (blame)
1
2
3
4
5
6
#ifndef KEYBOARD_H
#define KEYBOARD_H

void initializeKeyboard();

#endif // KEYBOARD_H
class="o">:number [ local-scope load-ingredients b <- add a, 1 ] def test a:number, b:number -> c:number [ local-scope load-ingredients c <- add a, b ] def main [ local-scope a:number <- test 3 # selects single-ingredient version $print a, 10/newline b:number <- test 3, 4 # selects double-ingredient version $print b, 10/newline c:number <- test 3, 4, 5 # prefers double- to single-ingredient version $print c, 10/newline ]