From ~/pr/gitl/ocaml-gol In a constant effort to learn new programming languages, I'm currently trying to use ocaml , a free and open-source general-purpose, multi-paradigm programming language maintained at the Inria . It's basically an extension of Caml with object-oriented features. I'm mostly interested by its functionnal and pattern matching features but the module part of the language can be a bit difficult to understand for someone with little to none ML (Meta Language) background. The error When trying to use the graphics module to create a graphical window and go just a little further than the simplest helloworld program, here is the result : If the project uses dune : (executable (name ocaml_project) (libraries lwt.unix graphics) ) with this code : let () = Printf.printf "Hello, world!\n";; Lwt_io.printf "Hello, world!\n";; Graphics.open_graph " 800x600";; The first times I built this project running the du
RainbruRPG switched to revision 252
- Get link
- X
- Other Apps
RainbruRPG officially switched to revision 252, closing and releasing the revision 251. This post follows the revision 251 announcement. RainbruRPG is a GPLv3-licensed free and open suruce 3D MMORPG project mainly written in C++.
The announcement
With this new revision, we added a (ugly) logo, a version overlay and started to implement a Not Yet Implemented dialog. This version also fixes several client segfaults.
The next revision will have to fully handle the NyiDialog (based on the brand newYou can download this release
Dead links update
As of 2022, this project is no more hosted at github. Tags are lost and the development is not halted but very slow as I'm currently on another projects. The full repo is now hosted at bitbucket and can be found here.
RainbruRPG, as its sub-projects and reimplementation, is licensed under GPLv3 so you can contribute.
- Get link
- X
- Other Apps
Popular posts from this blog
How to make a map of variant in C++
This code is used by RainbruRPG to store any scalar types in a single class instance. It's already in use since revision 254 to save game states values when switching fullscreen or changing screen resolution. The map class It's basically a map of boost::variant using std::string as map key. I decided to use function template setter and getter to have a standardized exception-based error handling, but you could have multiple parameter-based specialized getter/setter ( void set(bool) , void set(int) ...).
Comments
Post a Comment