<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Seth Juarez</title>
	<atom:link href="http://www.cs.utah.edu/~seth/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.cs.utah.edu/~seth</link>
	<description>University of Utah PhD Student</description>
	<lastBuildDate>Thu, 02 Sep 2010 05:38:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>NLP Fall 2010 Assignment #1 Tips</title>
		<link>http://www.cs.utah.edu/~seth/?p=25</link>
		<comments>http://www.cs.utah.edu/~seth/?p=25#comments</comments>
		<pubDate>Thu, 02 Sep 2010 05:11:14 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[NLP]]></category>
		<category><![CDATA[Assignments]]></category>
		<category><![CDATA[Help]]></category>

		<guid isPermaLink="false">http://www.cs.utah.edu/~seth/?p=25</guid>
		<description><![CDATA[Using an IDE My first suggestion is: don&#8217;t. These assignments are not complicated in the sense that you need a lot of libraries and/or IDE support. A good text editor and knowledge of how to compile (or interpret) your program is all you should need. Using Java Consider the following: class HelloWorld { public static [...]]]></description>
			<content:encoded><![CDATA[<h2>Using an IDE</h2>
<p>My first suggestion is: don&#8217;t. These assignments are not complicated in the sense that you need a lot of libraries and/or IDE support. A good text editor and knowledge of how to compile (or interpret) your program is all you should need.</p>
<h2>Using Java</h2>
<p>Consider the following:</p>
<pre>class HelloWorld
{
    public static void main(String[] args)
    {
       System.out.println("Hello World!");
    }
}
</pre>
<p>In order to compile the code simply:</p>
<pre>javac HelloWorld.java</pre>
<p>And to run it:</p>
<pre>java HelloWorld</pre>
<p>The
<pre>String[] args</pre>
<p> array will contain the command line arguments passed in</p>
<h2>Using Python/Perl</h2>
<p>Python and Perl are similar in that they are interpreted languages. I personally prefer Python. When using python, one need only create a file (program.py) with the following in the header of the file:</p>
<pre>#!/usr/local/bin/python26</pre>
<p>Using the command line:</p>
<pre>chmod +x program.py</pre>
<p>will make the file executable. To run the file simply
<pre>./program.py</pre>
<p>.</p>
<h2>Final Words</h2>
<p>Hope this helps. If there are any questions and/or problems make sure to send them to the teach list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cs.utah.edu/~seth/?feed=rss2&amp;p=25</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>