diff options
author | Eduardo Julian | 2022-06-25 20:24:43 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-25 20:24:43 -0400 |
commit | fb46beb8bd784ba92949bf2c535dc13c2f003ef0 (patch) | |
tree | 28dbec5e8e6a1307a5aee28772d9aa897349bc57 /stdlib/source/library/lux/world/input/keyboard.lux | |
parent | a384e0c9426d6110fa4c104a1327808a0aff91b0 (diff) |
De-sigil-ification: suffix : [Part 15]
Diffstat (limited to 'stdlib/source/library/lux/world/input/keyboard.lux')
-rw-r--r-- | stdlib/source/library/lux/world/input/keyboard.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/world/input/keyboard.lux b/stdlib/source/library/lux/world/input/keyboard.lux index 8adc006d5..0d9ec97d6 100644 --- a/stdlib/source/library/lux/world/input/keyboard.lux +++ b/stdlib/source/library/lux/world/input/keyboard.lux @@ -2,7 +2,7 @@ [library [lux (.except left right)]]) -(type: .public Key +(type .public Key Nat) (with_template [<code> <name>] @@ -97,7 +97,7 @@ [61451 f24] ) -(type: .public Press +(type .public Press (Record [#pressed? Bit #input Key])) |