NAME

LLEval - Perl interface to dankogai's LLEval service

VERSION

This document describes LLEval version 0.01.

SYNOPSIS

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!"'

DESCRIPTION

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

INTERFACE

# TODO

DEPENDENCIES

Perl 5.8.1 or later.

BUGS

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.

SEE ALSO

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

AUTHOR

gfx <gfuji@cpan.org>

LICENSE AND COPYRIGHT

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.