Browse thread
[Caml-list] Who controls INRIA mailserv filters?
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Brandon J. Van Every <vanevery@i...> |
| Subject: | RE: [Caml-list] Who controls INRIA mailserv filters? |
Diego Olivier
>
> When I recommend you to make your post more technical it means :
>
> - adding blocks of Caml code in your signature instead of the current
> one that just says the Caml filter is a crap (exercice : make a Caml
> program that chooses randomly 20 lines of code in the Caml compiler
> and adds them to your signature)
Not a bad idea, and less audacious than using Xavier as my trojan. :-)
Testfiring now.
> - using more specifically Caml oriented words - something like "In the
> next Seattle meeting we will discuss how inclusion polymorphism /
> functors < add technical content here > can be applied to 3D rendering
> for real-time games < add technical content here >"
I'm not interested in watering down the brevity and clarity of the
announcement. We meet *in person* to discuss such things.
Cheers, www.indiegamedesign.com
Brandon Van Every Seattle, WA
// return an array of 100 packed tuples
temps
int $[tvar0][2*100]; // what the c function needs
value $[tvar1]; // one int
value $[tvar2]; // one tuple
int $[tvar3] // loop control var
oncePre
eachPre
$[cvar0]=&($[tvar0][0]);
eachPost
$[lvar0] = alloc(2*100, 0 /*NB: zero-tagged block*/ );
for(int $[tvar3]=0;$[tvar3]<100;$[tvar3]++) {
$[tvar2] = alloc_tuple(2);
$[tvar1] = Val_int($[cvar0][0+2*$[tvar3]]);
Store_field($[tvar2],0,$[tvar1]);
$[tvar1] = Val_int($[cvar0][1]);
Store_field($[tvar2],1,$[tvar1+2*$[tvar3]]);
Array_store($[lvar0],$[tvar3],$[tvar0]);
}
oncePost
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners