Difference between revisions of "Disk.setLabel"

From ComputerCraft Wiki
Jump to: navigation, search
(Adding missing argument)
Line 2: Line 2:
 
{{Function
 
{{Function
 
|name=disk.setLabel
 
|name=disk.setLabel
|args=[[string (type)|string]] side
+
|args=[[string (type)|string]] side, [[string (type)|string]] label
 
|api=disk
 
|api=disk
 
|addon=ComputerCraft
 
|addon=ComputerCraft

Revision as of 14:32, 16 March 2012


Grid Redstone.png  Function disk.setLabel
No description provided.
Syntax disk.setLabel(string side, string label)
Returns nil
Part of ComputerCraft
API disk

Examples

Grid paper.png  Example
Sets the label of the disk in the bottom drive to "Floppy"
Code
disk.setLabel("bottom", "Floppy")