Forum Discussion Search with BoardTracker.com
Forum Discussion Search with BoardTracker.com
  
  

Advanced  |  Help
    Home Search Alerts Browse My Threads Setup About Login Signup    


» All > Computers & Internet > . > . > Programming Languages > Functional [1 Forums][Track this Category]
   Browse sub-categories   
No sub-categories for this category

   Latest threads in category   
CoderForums O'Caml 3.06  
05:08 1-Sep-02   [Replies: 0, Views: 238]    By: GnuVince
O'Caml 3.06 is out. It's just a bugfix release of 3.05 which had some bugs. http://caml.inria.fr/ocaml/distrib.html...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums w00t! 3.05!  
15:35 29-Jul-02   [Replies: 0, Views: 229]    By: Unnamed
ftp://ftp.inria.fr/lang/caml-light/ (they haven't changed the web sites but it's official ). Quote: To: caml-announce@inria.fr Subject: [Caml-list] OCaml 3.05...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums .NET  
19:06 24-Jul-02   [Replies: 1, Views: 263]    By: sans-hubris
Has OCaml, like many other OO lingos, been incorporated into the .NET Framework yet? Just curious....
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Unix.lseek and lines  
04:28 22-Jul-02   [Replies: 8, Views: 348]    By: GnuVince
I wish to make a program that will go to the 7th line of a text file, take what's on that line, and print it. Right now, I have this: Code: # #load "unix.cma";; # open Unix;; #...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Matching types?  
02:27 15-Jul-02   [Replies: 1, Views: 224]    By: GnuVince
Is it possible to match types in O'Caml? For example (this does not work, of course): Code: let print_any t = match t with int -> print_int | string -> print_string | char -&...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums CGI  
17:20 11-Jul-02   [Replies: 8, Views: 311]    By: Unnamed
anyone done CGI with Ocaml? i've been meaning to get around to it. i have this nifty asian_viking name generator i need to use: http://www.qlippoth.com/asian_viking.ml ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Whatcha doin'?  
04:08 28-Jun-02   [Replies: 7, Views: 510]    By: jemfinch
Ok, so I'm just curious what you folks are doing (and, perhaps, if any of the SML-ites want to help me with what I'm doing ) I've been writing a unit-testing framework for SML, based loosely on JU...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Matching  
16:30 22-Jun-02   [Replies: 4, Views: 407]    By: Unnamed
I have been learning OCaml lately, and I have come across this pattern matching that everyone always seems to be raving about. Isn't this essentially the same thing as a switch statement in C, or is ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Starting attempts...  
23:47 21-Jun-02   [Replies: 16, Views: 460]    By: Unnamed
Here we have the simple factorial Code: let rec factorial number = if number == 0 then 1 else number * factorial (number-1) let _ = ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Help me extend a function  
01:00 11-Jun-02   [Replies: 15, Views: 504]    By: GnuVince
Hey guys, I've got this function which calculates the sum of a given integer list: Code: let rec sum_int_list = function [] -> 0 | h::t -> h + (sum_int_...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Uh oh....  
15:57 8-Jun-02   [Replies: 1, Views: 260]    By: GnuVince
http://research.microsoft.com/projects/ilx/fsharp.htm F# for .NET... A language based on the core of Ocaml. What I really liked though was the F# vs Ocaml, where O'Caml has twice as many feature...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums PrBacterio  
03:42 7-Jun-02   [Replies: 0, Views: 283]    By: GnuVince
I took your Syntax Highlighting program (SHL), made a little build.me script (no Makefile, sorry) for easier building for other people. It's available there: http://darkhost.mine.nu:81/shl.tgz...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Speaking of Testing....  
22:09 6-Jun-02   [Replies: 0, Views: 284]    By: Unnamed
if anyone has time can you check the build on this: http://www.qlippoth.com/enoch777.zip included are binaries for Linux and Windows including the Tk version--probably need to change the mods ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Testing?  
17:49 6-Jun-02   [Replies: 10, Views: 299]    By: jemfinch
So does anyone here use any testing methodology in their O'Caml code? I'm looking to start coding on my SML IRC bot in a week or so (after exams are done ) and will want to integrate testing into my ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Possible forum change?  
13:41 3-Jun-02   [Replies: 3, Views: 254]    By: jemfinch
I've been reading up on SML (specifically, SML/NJ) lately, and I'm probably going to be using it (instead of O'Caml) for my next project when I get some time. So I can post things about it in here, w...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums O'Caml style.  
21:22 30-May-02   [Replies: 16, Views: 374]    By: jemfinch
Let's face it: O'Caml is a great language, but the syntax is horribly baroque. The syntax is really what keeps a lot of people from even trying the language. It's hard enough a mental burden to hand...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums I'm here, but only for O'Caml  
21:00 30-May-02   [Replies: 2, Views: 228]    By: jemfinch
Yes, I have "retired" (more like a "significantly long hiatus" ) but seeing that someone has gone to the trouble of making an actual O'Caml forum has inspired me to at least be pre...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Tk Windows without the console  
03:11 30-May-02   [Replies: 2, Views: 241]    By: Unnamed
anyone know how to create straight up m$ windows programs with Ocaml? i.e. for GUI's so there is no console at the bottom? like in Python name the file .pyw or GnuAda via -mwindows command line s...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Strike....  
03:57 29-May-02   [Replies: 3, Views: 239]    By: GnuVince
The map function with pattern-matching Code: let rec mapp f = function [] -> [] | h::t -> (f h)::(mapp f t);; ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Welcome friends!  
01:30 28-May-02   [Replies: 5, Views: 293]    By: Nafae
Welcome to the OCaml forum! Not that I have any idea what OCaml is, but my advisors say it's needed on a programming board and I won't disagree with them! So all you OCaml programmers may now h...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Reading a file in O'Caml?  
03:59 22-May-02   [Replies: 1, Views: 295]    By: GnuVince
In order to get an entry in Inkedmn's challenge, I am looking on how to read a file in O'Caml. So far I've found this: Code: # let gpl = open_in "gpl.txt";; val gpl : in_ch...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums Simple trivial O'Caml code  
20:01 13-Apr-02   [Replies: 11, Views: 485]    By: GnuVince
Code: let rec butLast mylist = if List.tl mylist = [] then [] else List.hd mylist :: butLast (List.tl mylist);; This functions recieves on argument, a list of any type (int list...
[Tags: No tags defined yet] -
Be the first to Tag this thread
CoderForums O'Caml and ML?  
04:47 7-Apr-02   [Replies: 11, Views: 390]    By: sans-hubris
How are O'Caml and ML related? Is O'Caml just another version of ML?...
[Tags: No tags defined yet] -
Be the first to Tag this thread

<<First  <Previous  1  2  3  [4]  5  6  7  8  9  10  Next>      
   




Research | Board owners portal | BoardTracker Forums | Search plugin | Add your board | About us | Contact us

© Pidgin Technologies Ltd. 2006