[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Soot tutorial - file missing ?



Hi, Genevieve,

Unfortunately, the tutorial is slightly outdated, and the lesson1
directory no longer exists. I have attached a copy of Hello.java to this
e-mail. Note that it's simply your typical Hello World program, there's
nothing special about it.


Hope this helps.
Felix

To whoever maintains the website: I have stored a copy of the Hello.java
file in the soot/tutorial/intro directory, and there is now a hyperlink
from the tutorial file to the program. Please let me know if this
arrangement is undesirable for whatever reason.


On Sat, 3 Feb 2001, Genevieve ARBOIT wrote:

> Hi,
> 
> I'm a student in this term's 621 class. I've have been reading the Soot
> tutorials at:
> 
>   http://www.sable.mcgill.ca/soot/tutorial/intro/
> 
> and although I downloaded and installed (successfully so far) the entire
> software, I cannot find the file (or directory) the following sentence,
> from the tutorial, is referring to:
> 
>   "Included in this lesson is the Hello.java program. Attempt the
>    following command from the lesson1 directory. "
> 
> Where could I get a hold of these lessons?
> 
> Thank you for your time and help,
> ---------
> Genevieve Arboit
> PhD student, Crypto & Quantum Info Lab
> McGill University
> 
public class Hello
{
    public static void main(String[] args)
    {
        System.out.println("Hello world!");
    }
}