New filters on the Home Feed, take a look!
view details

This post has been de-listed

It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.

14
Don't know if this has been asked before but what's your favorite programming language
Post Body

Mine would have to be java. Here's an example of file IO in java.

#!/usr/bin/ruby
infile = File.new("/etc/resolv.conf", "r")
outfile = File.new("junk.jnk", "w")
infile.each {
    |i|
    outfile.write i
    }
outfile.close()
infile.close()

outfile = File.new("junk.jnk", "r")
outfile.each {
    |i|
    print ">>", i
    }

Author
Account Strength
100%
Account Age
14 years
Verified Email
Yes
Verified Flair
No
Total Karma
8,588
Link Karma
1,654
Comment Karma
6,934
Profile updated: 3 days ago
Posts updated: 6 months ago
print "Hello world;

Subreddit

Post Details

We try to extract some basic information from the post title. This is not always successful or accurate, please use your best judgement and compare these values to the post title and body for confirmation.
Posted
12 years ago