Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Download the latest Habanero-Scala distribution and unzip the contents.
You should have the following filedirectory structure after unzipping:

Code Block
borderStylesolid
habanero-scala-0.1.2
├── bin
│   ├── hscala
│   └── hscalac
├── examples
│   └── primers
│       ├── actors
│       │   ├── Chameneos.scala
│       │   └── Pi.scala
│       ├── asyncs
│       │   ├── AsyncFinishPrimer.scala
│       │   ├── ForallApp.scala
│       │   ├── ForallChunkedApp.scala
│       │   ├── ForallIterableApp.scala
│       │   ├── ForeachApp.scala
│       │   ├── ForeachChunkedApp.scala
│       │   ├── ForeachIterableApp.scala
│       │   └── InterleavedAsync.scala
│       ├── futures
│       │   ├── DdfApp.scala
│       │   ├── FibDdfApp.scala
│       │   └── FibFutureApp.scala
│       ├── helloworld
│       │   ├── HelloWorldApp.scala
│       ├── isolated
│       │   └── CounterApp.scala
│       ├── phasers
│       │   ├── ForallPhasedApp.scala
│       │   ├── IterativeAveragingAccumulatorApp.scala
│       │   ├── IterativeAveragingPhaserApp.scala
│       │   ├── SimplePhaserApp.scala
│       │   └── SumReduceApp.scala
│       └── places
│           └── PlacePrimer.scala
└── lib
    ├── habanero-scala-0.1.2.jar
    ├── jsr166y.jar
    └── native/*

...

The installation is now complete and you are now ready to run the examples and write your own Habanero-Scala programs.

...