Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.316.351 Times

Aggressive Mall Inline Skates software
Filter: All | Freeware | Demo
 

Aggressive Mall Inline Skates

1 2 3 4 5 > 
Added: November 11, 2010 | Visits: 836

Inline::Octave Inline::Octave module contains inline octave code into your perl. SYNOPSIS use Inline Octave => DATA; $f = jnk1(3); print "jnk1=",$f->disp(),"n"; $c= new Inline::Octave([ [1.5,2,3],[4.5,1,-1] ]); ($b, $t)= jnk2( $c, [4,4],[5,6] ); print "t=",$t->as_list(),"n"; use Data::Dumper; print...



Platforms: *nix

License: Freeware Size: 20.48 KB Download (90): Inline::Octave Download

Added: March 09, 2010 | Visits: 1.483

Inline-API Inline-API is a Perl module that teach you how to bind a programming language to Perl using Inline.pm. SYNOPSIS #!/usr/bin/perl use Inline Foo; say_it(foo); # Use Foo to print "Hello, Foo" __Foo__ foo-sub say_it { foo-my $foo = foo-shift; foo-print "Hello, $foon"; } So you think...





Platforms: *nix

License: Freeware Size: 91.14 KB Download (88): Inline-API Download

Added: November 15, 2010 | Visits: 1.018

Inline-Support Inline-Support is a Perl module created to support information for Inline.pm and related modules. This document contains all of the latest support information for Inline.pm and the recognized Inline Language Support Modules (ILSMs) available on CPAN. SUPPORTED LANGUAGES The most important...


Platforms: *nix

License: Freeware Size: 91.14 KB Download (93): Inline-Support Download

Added: June 17, 2010 | Visits: 1.015

Inline::CPR Inline::CPR is C Perl Run. Embed Perl in C, ala Inline SYNOPSIS #!/usr/local/bin/cpr int main(void) { printf("Hello World, Im running under Perl version %sn", CPR_eval("use Config; $Config{version}") ); return 0; } Is it C? Is it Perl? Its neither, its both. Its CPR! CPR (C Perl...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (102): Inline::CPR Download

Added: July 07, 2010 | Visits: 936

Inline::C Inline::C is a Perl module that can Write Perl Subroutines in C. Inline::C is a module that allows you to write Perl subroutines in C. Since version 0.30 the Inline module supports multiple programming languages and each language has its own support module. This document describes how to use...


Platforms: *nix

License: Freeware Size: 92.16 KB Download (93): Inline::C Download

Added: October 05, 2010 | Visits: 935

Inline::SLang::Changes Inline::SLang::Changes is a Perl module with changes to previous versions of the module. Inline::SLang lets you write Perl subroutines in S-Lang. It dynamically translates the parameters and return values into native data types for both languages (or into Perl classes that are used to represent...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (96): Inline::SLang::Changes Download

Added: November 09, 2010 | Visits: 1.095

MKDoc::Text::Structured::Inline MKDoc::Text::Structured::Inline is a Perl module to convert text to HTML without handling block-level tags. SYNOPSIS my $text = some_structured_text(); my $this = MKDoc::Text::Structured::Inline::process ($text); my $that = MKDoc::Text::Structured::Inline::process_entities_only ($text);.


Platforms: *nix

License: Freeware Size: 14.34 KB Download (100): MKDoc::Text::Structured::Inline Download

Added: August 12, 2010 | Visits: 804

Inline::Ruby Inline::Ruby module can help you write Perl subroutines and classes in Ruby. SYNOPSIS print "9 + 16 = ", add(9, 16), "n"; print "9 - 16 = ", subtract(9, 16), "n"; use Inline Ruby; __END__ __Ruby__ def add(a, b) a + b end def subtract(a, b) a - b end The Inline::Ruby module...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (92): Inline::Ruby Download

Added: February 07, 2010 | Visits: 957

Inline::Filters Inline::Filters Perl module contains common source code filters for Inline Modules. Inline::Filters provides common source code filters to Inline Language Modules. Unless youre an Inline module developer, you can just read the next section. Supported Filters This section describes each...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (98): Inline::Filters Download

Added: March 17, 2010 | Visits: 669

Inline::Struct Inline::Struct is a Perl module that manipulate C structures directly from Perl. SYNOPSIS use Inline C => Config => Structs => [Foo]; my $obj = Inline::Struct::Foo->new; $obj->num(10); $obj->str("Hello"); myfunc($obj); __END__ __C__ struct Foo { int num; char *str; }; void...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Inline::Struct Download

Added: June 15, 2010 | Visits: 1.058

Inline::CPP Inline::CPP is a Perl module that can write Perl subroutines and classes in C++. SYNOPSIS use Inline CPP; print "9 + 16 = ", add(9, 16), "n"; print "9 - 16 = ", subtract(9, 16), "n"; __END__ __CPP__ int add(int x, int y) { return x + y; } int subtract(int x, int y) { return x -...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (90): Inline::CPP Download

Added: January 08, 2010 | Visits: 1.025

Inline::Java::PerlInterpreter Inline::Java::PerlInterpreter is a Perl module used to call Perl directly from Java using Inline::Java. SYNOPSIS import org.perl.inline.java.* ; class HelpMePerl { static private InlineJavaPerlInterpreter pi = null ; public HelpMePerl() throws InlineJavaException { } static private...


Platforms: *nix

License: Freeware Size: 94.21 KB Download (105): Inline::Java::PerlInterpreter Download

Added: April 23, 2010 | Visits: 846

Inline::Select Inline::Select contains dynamic selection of ILSM for a package. SYNOPSIS use Inline::Select::Register ( PACKAGE => Calc, Inline => [ Perl => sub {require t/Calc.pm} ] ) ; use Inline::Select::Register ( PACKAGE => Calc, Inline => [ CPP => t/Calc.cpp ] ) ; use Inline::Select::Register...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (100): Inline::Select Download

Added: February 02, 2010 | Visits: 1.125

Inline::Java Inline::Java lets you write Perl classes in Java and wrap/use existing Java classes. The project is an ILSM (Inline Language Support Module) for Java 2, and is part of the Inline family of modules..


Platforms: *nix

License: Freeware Size: 94.21 KB Download (98): Inline::Java Download

Added: August 22, 2010 | Visits: 876

Inline::Java::Callback Inline::Java::Callback is a callback into Perl from Java. SYNOPSIS use Inline Java => <


Platforms: *nix

License: Freeware Size: 94.21 KB Download (104): Inline::Java::Callback Download

Added: September 08, 2010 | Visits: 719

Inline::SLang::Assoc Inline::SLang::Assoc module contains support for associative arrays. SYNOPSIS use Inline SLang; # you can send hash references to S-Lang print_in_slang( { a => 23, "b b" => "foo" } ); # and get them back from S-Lang $href = get_from_slang(); print "The assoc array contains:n" . join(...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (93): Inline::SLang::Assoc Download

Added: August 13, 2010 | Visits: 821

Inline::Lua Inline::Lua is a Perl extension for embedding Lua scripts into Perl code. SYNOPSIS use Inline Lua; print "The answer to life, the universe and everything is ", answer(6, 7), "n"; __END__ __Lua__ function answer (a, b) return a*b end Inline::Lua allows you to write functions in Lua....


Platforms: *nix

License: Freeware Size: 24.58 KB Download (96): Inline::Lua Download

Added: July 25, 2010 | Visits: 1.042

Text::Template::Inline Text::Template::Inline allows easy formatting of hierarchical data. SYNOPSIS # you can import any name you want instead of "render" use Text::Template::Inline render; # yields "Replace things and stuff." render { foo => things, bar => stuff, }, q ; # yields "Three Two One Zero"...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (94): Text::Template::Inline Download

Released: August 14, 2012  |  Added: August 14, 2012 | Visits: 919

Create A Mall for Mac OS You are Kelly, a rising star in a mall development company. You become a world class mall developer by creating exciting malls with interesting stores. Upgrade the stores to attract more customers and earn more money. Create A Mall is the first game where you can then use the money to buy...


Platforms: Mac

License: Freeware Size: 26 MB Download (472): Create A Mall for Mac OS Download

Released: November 08, 2012  |  Added: November 08, 2012 | Visits: 553

Model C1D0M484 Inline X12 Parser Model C1D0M484 Inline X12 Parser is and advanced application designed to enable you to convert X12 files to xml or CSV. It is designed to be used either on the desktop or can be called from another application to convert an X12 file. It can be set to convert all the files in a specified folder....


Platforms: Windows

License: Freeware Download (54): Model C1D0M484 Inline X12 Parser Download

1 2 3 4 5 >