70 print saturation*100; "% saturation"
80 print luminance*100; "% luminance"
-
\ No newline at end of file
+
+
+## `getkey`
+```
+getkey k
+```
+
+Waits for a key and sets `k` to the its key code.
+
+++10 getkey x+20 print x+30 goto 10+
++10 cls+20 print "Use W,A,S,D to move! Hit ESC to stop."+30 left 90+40 getkey x+50 if x = "w"+60 forward 10+70 else if x = "s"+80 backward 10+90 else if x = "a"+100 left 10+110 else if x = "d"+120 right 10+130 end+140 goto 40+
++10 readkey x+20 if x != ""+30 print x+40 else+50 print ".";+60 end+70 goto 10+