You are in
>> Array >> comparison of programming languages (array)
Customize
Sign in to get personalized recommendations
Search

Ads


Blogs

Free PDF: Programming PHP Arrays Tutorial - Free ebook manual ...
1 PHP Programming Arrays 3 Arrays Arrays are PHP variables into which you can save more than one value. You can then use a loop to process each individual value, you can … If you're an experienced programmer in a language such as C or Pascal, tread carefully here. Arrays are different in PHP. If you're a Perl programmer, PHP arrays are similar to hashes, and if you've written in Java, then you might compare them to hash tables. If you're a database programmer, ...

Armed and Dangerous » Blog Archive » On Learning Haskell
It is a very SQL like syntax, and how it actually implements this depends on the type of data (which might be a database table, or an array or a user defined structure with appropriately implemented interfaces and so forth. ... However, these characteristics belong to fully functional programming languages and are not found in Haskell only. learn Erlang for example and you'll find more or less the same features, along with pattern matching and more. Jeff Read Says: ...

IT Updates: Comparison of programming languages « Let's share and ...
The Computer Language Benchmarks Game site contains a large number of micro-benchmarks of reader-contributed code snippets, with an interface that generates various charts and tables comparing specific programming languages and types of ...

php Vs ASP.net: a simple comparison | eNewsz.com
Net IDE that offers vast array of features, that make coding much easier and development more productive * Developers can download a free scaled down version of Visual Studio that offers an impressive array of features. This is aimed at students and hobbyists ... Applications can be written using many programming languages (e.g VB.Net, C#, J#, C++ COBAL) * The .Net framework (the engine that ASP.Net is runs on) has more sophisticated error handling capabilities than PHP ...

Programming Languages: Tutorial # 1
In many programming languages, strings are defined as arrays of characters. Compare the consequences when the array is static, dynamic and flexible. (Assignment, Comparison, Concatenation) 10. What are visibility and lifetime? ...

Lecture Notes by Shruti Kohli: Question bank of C language
Compare use of switch with nested if-else statement. 37. What is the purpose of break statement? With which control statement break can be used? 38. Consider a situation where break statement is used with innermost of several nested control .... 100. What is a compiler? What is its role in any programming language? 101. Write appropriate array definition for each of the following problem situations: 1. Define a 1- dim array,10 element array named numbers assign values to ...

The world is amazing: Python: Customize sorting with a comparator ...
Many other programming languages, Python does have the comparator facility to sort a list according to your need. You can define a customize compare function which will implement your logic for sorting. ... array.sort(comparator) print array. You can see that I've just put a logic inside my compare function. You just need to build your own comparing mechanism when you'll go to use this type of sorting. Believe me, this kind of things just make your life easier, ...

Data Structures Question Papers- Minor 1 | Naman Zone
A Explain with syntax how static and dynamic array are created in C programming language. 3.B Write a program to check the balanced parenthesis using stack. III Semester Bio Informatics Paper- Note that Linked Lists are not a part of the IT ... 1.B Write an algorithm that finds minimum & maximum element among n elements stored in an array A that uses O(log n) comparison. 2. Write an algorithm to implement multiple stack of variable size using single array of size n. ...

Web Jazz: Ruby Snippet: Caching object attributes
if c.sum == 4 # some comparison with the sum. # do something else end. This is not applicable to functional programming languages, since all variables are consts within a scope. But for object-orientated imperative languages, this generally makes for less messy ... This is where meta programming comes in. I wrote a piece of code that did the bookkeeping of caching attributes for you. You'd use it like: class Collection include AttributeCache def initialize @array = [] ...

Regular Expressions and PHP PHP
PHP is a very fast programming language, but there is more to optimizing PHP than just speed of code execution. In this chapter, we explain why optimizing PHP involves many factors which are not code related, and why tuning PHP requires an ... This is a comprehensive article / tutorial on programming in PHP. It covers a variety of key topics including PHP Structure, Scalar Variables and Data, Data collection: Arrays, Operations and Comparisons, PHP Comparison Operators, ...

Guest Article: Static Analysis in Medical Device Software (Part 3 ...
A natural idea for to express the properties that make up a function contract is to use the same language as for the implementation. Being a programming language, it is suitably formal; the specifier, even if he is not the programmer, ... The function max_element finds the index of the maximum element in an array of integers. The formal version of this specification is complicated by the fact that it specifies that if there are several maximum elements, the function ...

Developer's Corner: C# String Tips
The following is a good balance between speed and clarity and works well with Unicode and alternate character sets: static public string Reverse( string s ) { char[] charArray = s.ToCharArray(); Array.Reverse( charArray ); ... using System. Globalization; string s1 = "C# is a GREAT programming language."; string s2 = "great"; CompareInfo Compare = CultureInfo.InvariantCulture.CompareInfo; int i = Compare.IndexOf( s1, s2, CompareOptions.IgnoreCase ); ...

Top 21 PHP Programming mistakes - Web Design Forums
However, it must be noted, due to the open source nature of PHP, you might discover user-defined functions defined before they were added to PHP's functionality (such as finding the difference between two arrays). This doesn't necessarily ..... Standard Query Language (SQL) was specifically designed to query and retrieve data samples from your tables. The idea is to filter out the unnecessary data (using SQL), leaving a relevant data set from which to work (using PHP). ...

Attero Ignorantiam: Think Freely: Comparison of C# to Objective-C ...
These are analogous to getters and setters that Java students learn on their first day of Object-Oriented Programming. Properties are accessed in both languages via dot-syntax. In C#, properties are declared as either public int Number ...

"compare column value to anything in a list of values" thread from ...
[/snip] In order to do this you are going to use a programming language or scripting language. For PHP you could put the values from the CSV list in an array and the use IN to compare against that array. -- MySQL General Mailing List ...

Zend Weekly Summaries Issue #331
PEAR contributor Hans Lellelid wrote to the internals list at the end of last week complaining that DateTime comparison appears to be broken. His bug report about this issue had repeatedly been marked bogus, and so he wanted to bring the .... I am very much against putting reference implementations of design patterns into a programming language. If you want this, you have not understood the intention of design patterns (or the difference (in degrees of freedom) when ...

overload of xc864 limit?
But now I've got another problem I used this include in order to compare lists of characters that I've have using the strcmp -->. for example = if (strcmp(array,"ROK")==0) then ... can any one tell me how I can compare an array of characters without using this function? Read-Only .... If you later work for a larger company, that company may have english as official company language, i.e. requiring that all official documents, design documents, ... has to use english. ...

St. on IT: My Top 5 on that RightJS vs. jQuery Question
There were lots of talks about RightJS speed and then more about speed, and then we had some abstract talks about its philosophy and its way among the others and we also have that simple comparison page. And what I find important in a brainwashing ... It brings many standard features from later JavaScript specifications, plus many other none the less standard features from server-side programming languages, for example methods like String#startsWith or Array#random. ...

Castles of Air: Big-O Notation 3: Showing off how you think
"Suppose that we sort the array. That would take O(n*log n) time (QuickSort, remember?) to complete. Where does that get us? Well, then we could quickly find the largest number and the smallest number of the array and compare them ... This might be why my previous attempts to "learn programming" have always dribbled out to failure. Memorizing commands isn't easy for me, and learning how to use them is hard as well. But knowing when to use them and why is more difficult. ...

Comparing MongoDB and Redis, Part 1 « While I Pondered…
Actually, all it takes for these is to create arrays containing the book numbers, assign them to the instance, and save. That's one of the nice things about MongoDB, as we'll see: you can query for items in embedded arrays. ... "_id" : " 4b58f90569bef38f8f000091", "name" : "Matsumoto,Yukihiro", "_type" : "Author" }, { "_id" : "4b58f90569bef38f8f000092", "name" : "Flanagan,David", "_type" : "Author" } ], "_type" : "Book", "title" : "The Ruby Programming Language" } ...

Pascal Programming: THE SIMPLE PASCAL DATA TYPE
A type in Pascal, and in several other popular programming languages, defines a variable in such a way that it defines a range of values which the variable is capable of storing, and it also defines a set of operations that are .... It is very powerful when used in an array or some other user defined data structure which is beyond the scope of this chapter. A very simple program, CHARDEMO.PAS is included to give you an idea of how a char type variable can be used. ...

SATISH KASHYAP: Architectures and Compilers to Support ...
This means that special effort must be made in order to partition and schedule large graphs obtained from high-level programming languages. The virtual hardware concept is implemented by time-sharing a given RPU. .... A coarse-grain approach such as the MATRIX project [17], which is based on an array of identical 8-bit functional units and a reconfigurable network: Each functional unit contains memory, an ALU, a multiplier unit, and control logic. ...

Java Collections - Comparable Vs Comparator - Java, Collections ...
Java contains several comparison operators (eg, <, <=, >, >=, ==, !=) that allow you to compare primitive values. However, these operators cannot be used to compare the contents of objects.... ... 24, 22 ) ); // output List elements System. out.printf( "Unsorted array elements:\n%s\n", list ); // sort in order using a comparable Collections.sort( list ); // output List elements System.out.printf( "Sorted list elements:\n%s\n", .... Java Programming Language ...

Sanitising and Cleaning Variables PHP
Arrays are widely used, because of the lack of features in normal variables. That's why you can find arrays is most of the common programming languages. PHP also uses arrays in a very easy way. This tutorial will cover the basics of arrays. ... This is a comprehensive article / tutorial on programming in PHP. It covers a variety of key topics including PHP Structure, Scalar Variables and Data, Data collection: Arrays, Operations and Comparisons, PHP Comparison Operators, ...

Passing Arrays by Reference Errors Type Cannot be Inferred ...
Length + 1) array(array.GetUpperBound(0)) = element End If End Sub. Comparing the two I see little difference; other then the generic passing which is .NET specific and T auto reference identifies the underline base type; which is what I thought Object ..... Different programming languages work in different ways. There's nothing wrong with the way VB .NET works. If you don't like it then don't use it. If you want to use it, get over your preconceptions and get used to it. ...

Speaking my (programming) language?: Is Scala more complicated ...
Arrays. Arrays in Java are accessed via square brackets. In Scala, parentheses are used, because accessing an array index is a method call (called apply). Don't worry though, the compiler optimizes this away. .... serberoth said... Not to be a hater, what you have here is a very nice comparison between the two languages. Yet I find myself not convinced that Scala is any less complicated than Java. Perhaps the complications are of a different nature. ...

Omics! Omics!: Programming Fossil Stumble, but Scala School Progresses
One final language note: the "override" keyword is required whenever you override an underlying method -- though Scala lacks the requirement to declare the parent method "virtual" to enable overriding (I think I have that all right) ... override def compare(that:RangeCoverage):Int = this.st compare that.en def increment = { coverage+= 1 } def Coverage:Int = { return coverage } def St:Int = { return st} def En:Int = { return en} def BedGraph(Chr:String):String = { return ...

Comparison of programming languages
General comparison. From Wikipedia, the free encyclopedia. The following table compares general and technical information for a selection of commonly used programming languages. See the individual languages' articles for further ...

TYBcom Exam Timetable 2010 – TYBcom.com Syllabus | B4tea.com
Introduction to Visual Basic, Introduction Graphical User Interface (GUI) , Programming Language (procedural, Object Oriented, Event Driven), Writing VB projects, The Visual Basic Environment, Finding and fixing errors [Chapter 1 of 19] ... Condition, Comparing numeric variables and constants, Comparing Strings, Comparing Text property of text box, Compound Conditions (And, Or, Not) If Statement, If .then-else Statement, Nested If Statements, LCase and UCase function, ...

AmiBroker Business: [amibroker] Digest Number 9165
I had eSignal which has a JavaScript based language in their TA/graphics package. I was comfortable with programming in JS. JS native mode uses double precision for calculations, it is possible to think up routines (such as polynomial .... Basically, I have an array, and I want to compare a specific value (i.e. the value of an oscillator), to its ranks in the array.. Is there a shortcut to do this? what I have been doing is exporting the values of the oscillator (using an ...

Tutorials » Visual Basic .net :: iBlog
About PerlIntroductionPerl is a versatile programming language created by Larry Wall in 1987. He designed this language to extract and manipulate text files. It has since grown into a rich programming language. ..... The original array follows the comparison sequence. The sort order is stored in a new array which, in our example, is the array we use in the print statement. In ClosingPerl is a versatile language. Like any language, Perl has a grammar. ...

Software development: On Prototype vs jQuery
I was not comparing the possibilities of jQuery vs Prototype in terms of whether to use $ or $$. I'm not trying to emulate that syntax, because I don't need it. I just wanted to show, what the true framework API comparison should look like. ... It is not some API to manipulate DOM objects, it is extension to Javascript language. In Javascript there are some base classes like Object, String or Array. Prototype extends those classes to add some useful features that can help ...

Stop writing foreach() cycles - Invisible to the eye
n"; // uasort() customize the sorting by value, // maintaining the association with keys // there is the native asort(), but again the customization // of the function is more interesting $compare = function($a, $b) { if ($a == $b) { return 0; .... Syntactic sugar is good but it's not what I would use to choose a programming language. :) Php is not very verbose, and you can easily pass an array or an object if there are many arguments (which is usually a smell.) ...

C++ Tutorial For Noobs
Most programming languages include a convenience loop statement named "for". "for" has three distinct code parts instead of a test. The first part is the initialization, where you set a variable. The second part is the test statement. ... To access a particular element of the array, we indicate the index. cout << "Index 3: " << anArray[3] << endl; // The confusing part is that the indices of an array start at 0. That // means that the above statement would.

Vb.net Basics(by HarikaMehra) « Sailajamehra.. writes for u…
Keywords are words with special meaning in a programming language. In Visual Basic .NET, keywords are reserved; that is, they cannot be used as tokens for such purposes as naming variables and subroutines. ..... Single Dimension Array. – Multidimension Array. – Jagged Array. – Array Properties. • Arrays are programming constructs that store data and allow us to access them by numeric index or subscript. • An array is a reference type that contains variables accessed ...

Programming and politics: Clojures Primes Shootout
The implementations I got were just too different from the algorithms used for the other languages, that it did not seem like a good comparison. I have been meaning to go back and come up with a satisfactory implementation. And before you ask, ... There is no duplication of the list and the non-primes are eliminated efficiently. Using Java arrays just seems non-idiomatic to say the least. The other examples did for JavaOne all used variable length lists instead of arrays. ...

How to Compare Two Strings in C Programming C and C++
This tutorial is for those people who want to learn programming in C++ and do not necessarily have any previous knowledge of other programming languages. Of course any knowledge of other programming languages or any general computer ... This part of C programming tutorial has dual purpose: firstly to teach you how to apply previously learned C/C++ knowledge, second: to show you how pointers, arrays, functions and matrixes can be combined together in one single program. ...

Google Go: New Programming language
Despite the large amount of enthusiasm, modern programming languages dont compare to C in performance. The best that Microsoft, Sun, and Apple have to offer are just variations on that theme. Although Google's Go is yet another take on object-oriented C, .... The result will be the product of all of the numbers stored in the array, multiplied together. l-carnitine. I have heard something about that goggle is processing one programming language on its own code. ...

12 Steps to MooTools Mastery | Nettuts+
Like most programming languages, in JavaScript there exist a large number of stylistic preferences and "best practices." When working with MooTools you'll find there to be no shortage of these, including: not chaining excessively, ..... There is no arguing that jQuery is powerful, and has started some JavaScript crazes, like incredibly fast CSS3 selectors. But when you compare the two frameworks jQuery's syntax a bit ugly and MooTools offers some more methods. ...

How to compare an address to another address?
How to compare an address to another address and replaces the value stored in that address? Code: //This program prints the initialize value and the addresses of the //elements inside the array. This proram also allows the user to change // the address of the hardcoded ..... User Control Panel, Private Messages, Subscriptions, Who's Online, Search Forums, Forums Home, Articles / Source Code, Programming, C-C++, Assembly language programming (ALP), Java, Visual Basic [VB] ...

Prospering with ruby vs. haskell | CodeNoise
Compare a non-trivial ruby script to a similar haskell script in order to learn more about both languages. ... I am finding that functional programming relies on recursion a lot more than OOP. This is another portion of code where I had to deviate. Here is where I actually parse the passed in loans, and return a new array of updated loans, and a new account balance. This is probably the most un-haskellish function of the group, and definitely needs some work. ...

Comparing MongoDB and Redis, Part 2 « While I Pondered…
In that approach, for example, if I have a book title and price, I'd have book:123:title => “The Ruby Programming Language” and book:123:price => “39.99″. Obviously I can then do things like add a book to sets like “Under $50″ by adding the ... The redis-rb library provides a great mapped_mget() method, but at the moment it doesn't support passing in an array. I would have to iterate each key and build a string of them. Presumably a fix can be made to accept an array, ...

C# Int Type
The int type is the simplest and typically fastest integer numeric type in the C# programming language. Although there are many different number representations you can use, the int type is the native integer, which provides some advantages . ... Also, you can compare two integers (variables or values) using the == (equality) operator; this simply compares all the bits for equivalence. The int type also has MinValue and MaxValue properties; these are very useful for when ...

Gello a decision support language | healthinformatics.info
The GELLO specification has been developed in coordination with the HL7 Clinical Decision Support TC (CDSTC)[1] GELLO is a class based object-oriented programming language and a relative of the Object Constraint Language (OCL). ... The intension was for GELLO to evolve as a standard query and expression language for decision support. GELLO creates the potential for many decision support options, as the full array of atomic patient data is greatly accessible to compliment ...

NaNs and reflexivity | Lambda the Ultimate
We encountered the problem in connection with the work on revising the ISO standard for Eiffel, when we realized that transposing the IEEE 754 rule to the language would mean that we cannot put a value into an array and then ... NaNs can also be used for detecting unitialised memory (the FFFFFFFF pattern is a QNaN), there is no legitimate comparison between unitialised variables. Correctly handling floating point operations in a programming language is very complex. ...

Automated Trading Systems for Financial Markets and ...
Their advantages as compared to conventional trading schemes include, for example, an unprecedented speed of processing and delivery of information to end users, the level of integration with data providers, and a wide array of built-in technical analysis instruments .... The PTL Builder IDE will serve well both financial experts and programmers thanks to its support of different programming languages and provided tools such as tester and debugger.2.4. Solution Comparison ...

Sort Multidimensional Array By One Or Two Columns - PHP | Dream.In ...
I don't know of any programming language that has an array with rows and columns since that is explicitly for a two-dimensional case. Whereas an array as a programming construct can be n-dimensional. If you need a good example just look ... Also note that a database table can be seen to a OOP language as an array of objects. In this case, the object is sometable_row. Most languages have sorting options for arrays that will pass two array items to a comparison mechanism. ...

Continuity Analysis of Programs | Lambda the Ultimate
Lambda the Ultimate. The Programming Languages Weblog .... I'm guessing they just assume that can they perform comparison operations between reals, so that their results say something about the continuity of the functions your floating point code is approximating, but I haven't read the paper yet. What their setup involves was exactly the question asked by vrijz. By Matt M at Fri, 2010-02-05 21:16 | login or register to post comments ...

Why No Computer Science"y" Books in C#? | The Coffeehouse | Channel 9
I would like to draw attention to the fact that I have been at no one time been explicit about choosing language x over language y, I have merely presented an array of languages that omit C#. It is difficult to say why I think C# .... For a CS student with no experience with programming languages, C# is generally (IMHO) not a good first language. The language is so powerful and broad now that it is hard to know where to start if you've never been exposed to programming. ...

Professional ADO.NET 3.5 with LINQ and the Entity Framework (Wrox ...
Language Integrated Query (LINQ), as well as the C# 3.0 and VB 9.0 language extensions to support it, is the most import single new feature of Visual Studio 2008 and the .NET Framework 3.x. LINQ is Microsoft's first attempt to define a universal query language for a diverse set of ... This book concentrates on hands-on development of practical Windows and Web applications that demonstrate C# and VB programming techniques to bring you up to speed on LINQ technologies. ...

IRC Chat channels

ukfriendly-chat.co.uk #programming

chattercity.net #programming

nl.ffsnetwork.com #dev

swiftirc.net #programming

eighthbit.net #programming

n00bstories.com #programming

freenode.net #alt.net

freenode.net #TriFunc

ipefecture.net #Programming

freenode.net #social-room

ircstorm.net #Programming

uni-irc.net #programming

zoelife4u.org #scripting

atlantisirc.net #programming



Video
Loading...
Top websites

Comparison of programming languages (array) - Wikipedia, the ...
This language has improved array handling as part of its standard library. ... In this language, you can access or write to an array index greater than or ...


Programming Language Comparison
Comparison of several popular object-oriented programming languages


Comparison of programming languages - Wikipedia, the free ...
Programming languages are used for controlling the behavior of a machine (often a computer) ... Programming Language Comparison — a comparison of nine programming languages and ...


Comparison - D Programming Language 2.0 - Digital Mars
D Programming Language ... This table is a quick and rough list of various features of D that can be used to compare with other languages. While many capabilities are available ...


Comparison of Programming Languages - Unify Community Wiki
This is a comparison of the features and instructions of the three high-level programming languages offered by Unity: JavaScript, C#, and Boo. Contents ...


comparison of programming languages " davinci's notebook
Tag Archive for 'comparison of programming languages' Programming exercise: permutations of a string ... Programming exercises and comparison of programming languages ...


syntax across languages
breaking lines (useful when end-of-line and/or indentation has a special meaning) ... Comparison of programming languages syntax. Comments and Literals in programming languages ...


davinci's notebook
Programming exercises and comparison of programming languages ... comparison of programming languages, map, permutations, programming, programming ...


C# From a Java Developer's Perspective
In languages like C and C++, each subarray of a multidimensional array must have the same dimensions. ... the capabilities of a programming language and the language runtime. ...


Comparison - D Programming Language 1.0 - Digital Mars
D Programming Language ... This table is a quick and rough list of various features of D that can be used to compare with other languages. While many capabilities are available ...


Posts in groups

Programming Languages Decisions

... their theories and data. 2. PROGRAMMING LANGUAGE RECOMMENDATIONS It is okay ...type while having string and array information remain active and available...been working on getting my programs into shape for circulation rather...will enable them make those comparisons in an almost effortless manner...government agency researchers. After the programs become available there could be...

Re: languages influencing Fortran

...section of the Wikipedia article "Comparison of programming languages" at http://en.wikipedia...> There is a chart comparing languages in which the "influences" column ...(what other languages influenced the language) for Fortran is currently blank.... probably influenced by many different languages, but how would you narrow ... APL and FP. The whole-array operations in Fortran90 are strongly ...

Re: languages influencing Fortran

...section of the Wikipedia article "Comparison of programming languages" at http://en.wikipedia...> There is a chart comparing languages in which the "influences" column (what other languages influenced the language) for Fortran is currently blank. ... probably influenced by many different languages, but how would you narrow it... APL on the array language. Other array languages such as IBM'...

Re: The linf project (2)

...would be an implementation detail the programming language need not worry about. ... between strings and char 1 arrays I would prefer that strings (...in any way except assignment and comparisons (where they have real semantic ...and does it matter if the array is explicit shape assumed shape ...I suggest that all explicit shape arrays should be in modules. -- J....

Re: one-liner for characater replacement

...-like prototyping/proof-of-concept language for mathematically oriented computing (not...was designed as a systems programming language, mostly not emphasizing mathematical...the basic characteristic of a language). And, things that are common...having to support legacy code, arrays are only passed as descriptors...4) string concatenation (||) 5) relational (comparison) operators 6) boolean AND (&) 7...

Re: FORTH levels

...I have collected some reasons: Difficult language: - Forth does not enforce a grammar...it still isn't in any comparison as popular as C. I know..., writing important stuff in this language that nobody understood. Creating unmaintainable code...: it is a very simple programming language and companies can hire ... numbers of arguments, wrong types, array out of bounds, memory leaks,...

Re: FORTH levels

...have collected some reasons: Difficult language: - Forth does not enforce a...still isn't in any comparison as popular as C. I...Gargabe Collection (easier to write programs with no memory leaks) - write...it is a very simple programming language and companies can hire...fast and even if the programs contains bugs, Java is very...e.g. if you overwrite array bounds, which is too easy...

Re: FORTH levels

... have collected some reasons: Difficult language: - Forth does not enforce a ... still isn't in any comparison as popular as C. I ... Gargabe Collection (easier to write programs with no memory leaks) - write ... it is a very simple programming language and companies can hire ... e.g. if you overwrite array bounds, which is too easy ...the standard library and the language is not very restrictive (e...

Re: :: operator considered harmful?

... an essential part of every program. 2. arrays appearing in the dummy parameter ...is the upper bound of the array dummy argument(s). __________________ "holst" ...I will show 3 examples, for comparison: Method 1 - FORTRAN 77 (saxpy.f...anything I forgot?] The tradition in programming languages is to define *everything* ...nice looking code" nothing worth in comparison to the (small) risk with ...

Re: Verbose functional languages?

... for the community to innovate the language, which primarily means adding all of ... structures rather than OCaml's silly 4M-element arrays, Bigarrays and "Raw" ... . Per-type functions (e.g. comparison). . Machine-precision ints rather than 31-... that isn't optimized for C# programs. . No .NET baggage, e.g. ... support for modern graphics and GUI programming, e.g. OpenGL and GTK+/Qt....

Copyright © 2008 ShopInt.com