<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.computercraft.info/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Evil+dan2wik</id>
		<title>ComputerCraft Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.computercraft.info/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Evil+dan2wik"/>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/Special:Contributions/Evil_dan2wik"/>
		<updated>2026-07-11T18:26:43Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=User_talk:168.215.243.4&amp;diff=4607</id>
		<title>User talk:168.215.243.4</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=User_talk:168.215.243.4&amp;diff=4607"/>
				<updated>2012-12-04T13:46:57Z</updated>
		
		<summary type="html">&lt;p&gt;Evil dan2wik: To be banned.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To be banned.&lt;/div&gt;</summary>
		<author><name>Evil dan2wik</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Read&amp;diff=4606</id>
		<title>Read</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Read&amp;diff=4606"/>
				<updated>2012-12-04T13:44:21Z</updated>
		
		<summary type="html">&lt;p&gt;Evil dan2wik: Undo revision 4605 by 168.215.243.4 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=read&lt;br /&gt;
|args= [[char (type)|char]] to replace userinput with&lt;br /&gt;
|api=&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Lets you get input of the user.&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Prints what the user wrote.&lt;br /&gt;
|code=[[print]] (read())&lt;br /&gt;
|output=Whatever the user wrote.&lt;br /&gt;
}}&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Ask for a Password and lets the user enter it. The letters are hidden by '*'.&lt;br /&gt;
|code=local password = &amp;quot;computercraft&amp;quot;&lt;br /&gt;
 [[print]] (&amp;quot;Enter Password&amp;quot;)&lt;br /&gt;
 local input = read(&amp;quot;*&amp;quot;)&lt;br /&gt;
 if input == password then&lt;br /&gt;
  [[print]](&amp;quot;Password is correct. Access granted.&amp;quot;)&lt;br /&gt;
 else&lt;br /&gt;
  [[print]](&amp;quot;Password is incorrect. Access denied.&amp;quot;)&lt;br /&gt;
 end&lt;br /&gt;
|output=Enter Password&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*******&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Password is correct. Access granted. or Password is incorrect. Access denied.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Evil dan2wik</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Fs.isDir&amp;diff=4563</id>
		<title>Fs.isDir</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Fs.isDir&amp;diff=4563"/>
				<updated>2012-12-04T10:37:35Z</updated>
		
		<summary type="html">&lt;p&gt;Evil dan2wik: Undo revision 4562 by 184.171.168.202 (talk) Changed 'rum' back to 'rom'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=fs.isDir&lt;br /&gt;
|args=[[string (type)|string]] path&lt;br /&gt;
|api=fs&lt;br /&gt;
|returns=[[boolean_(type)|boolean]] &amp;lt;code&amp;gt;true&amp;lt;/code&amp;gt; if &amp;lt;var&amp;gt;path&amp;lt;/var&amp;gt; is an existing directory, or &amp;lt;var&amp;gt;false&amp;lt;/var&amp;gt; if not (if it doesn't exist or if it is a regular file)&lt;br /&gt;
|desc=Checks whether a directory exists&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Checks that the &amp;quot;rom&amp;quot; directory is, in fact, a directory&lt;br /&gt;
|code=print(fs.isDir(&amp;quot;rom&amp;quot;))&lt;br /&gt;
|output=true&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Evil dan2wik</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Coroutine.status&amp;diff=4561</id>
		<title>Coroutine.status</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Coroutine.status&amp;diff=4561"/>
				<updated>2012-12-04T10:33:05Z</updated>
		
		<summary type="html">&lt;p&gt;Evil dan2wik: Undone vandalism. IP requires ban.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Function&lt;br /&gt;
|name=coroutine.status&lt;br /&gt;
|api=Coroutine&lt;br /&gt;
|returns=[[string]] status&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Returns the status of the coroutine; returns &amp;quot;running&amp;quot;, if the coroutine is running; &amp;quot;suspended&amp;quot; if the coroutine was yielded or not running; &amp;quot;normal&amp;quot; if the coroutine is active but not running (that is, it has resumed another coroutine); and &amp;quot;dead&amp;quot; if it finished its function.&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Writes the status of the running coroutine.&lt;br /&gt;
|code=print(coroutine.status(coroutine.running()))&lt;br /&gt;
|output=running&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Evil dan2wik</name></author>	</entry>

	</feed>