--
-----
To post to this group, send email to sleep-de...@googlegroups.com
To unsubscribe from this group, send email to sleep-develope...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sleep-developers?hl=en
The Sleep Scripting Project: http://sleep.dashnine.org/
#debug(7 | 24 | 34);
global('$sleeplibs_dir');
import * from: ../JavaLibs/myexcel.jar;
$sleeplibs_dir = [System getenv: "SLEEPLIBS_DIR"];
println("SleepLibsDir: " . $sleeplibs_dir);
import jxl.* from: ../JavaLibs/jxl.jar;
$test = [new MyFirstClass];
[$test setOutputFile("File.xls")]; to [$test setOutputFile: "File.xls"];
[$test write()]; to [$test write];
import jxl.* from: ../JavaLibs/jxl.jar;
Andy Hurd
--