Parallel
PHANTOM.ASC
Associated article: The Phantom Programming Language
Tags: Parallel
Source code accompanying the article by Antony Courtney in which he discusses Phantom, an interpreted language designed to address the problems that arise when developing large-scale, interactive, distributed applications such as distributed conferencing systems, multiplayer games, or collaborative work tools.
The Phantom Programming Language by Antony Courtney Listing One (* primes.pm -- a simple primes numbers sieve in Phantom *) module primes; import stdio, fmt; const size = 5000; (* filter out all multiples of n from sieve *) proc filter(n: int; sieve: list&...


