Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a site which offers an interactive F# shell?

Is there a site like try ruby that allows one to experiment in an F# interactive shell? I'd like to try a few commands without installing Visual Studio or Mono.

like image 386
brianegge Avatar asked Dec 18 '09 01:12

brianegge


People also ask

What is a text-based RPG called?

Play-by-post and PBEM This includes such games as play-by-email (or PBEM) RPGs. The origins of this style of role-playing are unknown, but it most likely originated in some form during the mid-to-late 1980s when BBS systems began gaining in popularity.

Is Twine free to use?

Twine is a free and open-source tool created by Chris Klimas for making interactive fiction in the form of web pages. It is available on Mac OS X, Windows, and Linux.


3 Answers

There is also now tryfs.net.

like image 70
Kevin Cantu Avatar answered Nov 22 '22 15:11

Kevin Cantu


Not yet that I know of. (This is something the F# team would love to do if/when we can find the free time to put it together.)

(Note that you don't need VS or Mono - you can just have .Net and then install the F# CTP and just get the runtime, command-line compiler, and fsi.exe, and use that. But it would be nicer if there were a no-install web-site-visit try-it thingy.)

like image 36
Brian Avatar answered Nov 22 '22 16:11

Brian


You can use codepad.org for experiments with OCaml. The core of F# and OCaml is similar, just remember not to use light version of syntax, advanced F# features and .net libraries :)

like image 22
ssp Avatar answered Nov 22 '22 17:11

ssp