
LLEval - Perl interface to dankogai's LLEval service

This document describes LLEval version 0.01.

In fuzzbuzz.p6:
#!lleval
# This is a Perl6 script
[1..30].map({
{ $^n % 3 ?? '' !! 'Fizz' }($_)
~
{ $^n % 5 ?? '' !! 'Buzz' }($_)
|| $_
}).join("\n").say;
Or from the shell:
lleval -x hs 'main = putStrLn "Hello, Haskell world!"'

This is a Perl interface to dankogai's LLEval service.

# TODO

Perl 5.8.1 or later.

All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.

http://colabv6.dan.co.jp/lleval.html

gfx <gfuji@cpan.org>

Copyright (c) 2010, gfx. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.