Neo Snyder

Greenhorn
+ Follow
since Feb 14, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Neo Snyder

I have written a simple java program test.java
import java.io.*;
public class test{
public static void main(String args[]){
while(true){
System.out.println("hello");
}
}
}
when i run this program using the command
java test& , 10 instances of this program is shown in the process listing.Iam working in linux
20 years ago