source: Eurostat
- European Union (27 countries) 86 622 125
- Germany (until 1990 former territory of the FRG) 12 902 834
- France 12 619 699
- United Kingdom 11 748 541
| class Scenario[T <: ScenarioContext[T]](val title: String)(implicit val context : T) { | |
| import system._ | |
| private var s: Scenario[T] = null | |
| def apply(synopsis: => Unit) = { | |
| new Scenario(title)(context) { | |
| override def run : Unit = synopsis | |
| } |
| using namespace std; | |
| vector<string> tokenize(string const &line, char separator) { | |
| vector<string> tokens; | |
| istringstream elements(line); | |
| while(!elements.eof()) { | |
| string token; | |
| getline(elements, token, separator); | |
| tokens.push_back(token); | |
| } |
| import System.Environment (getArgs) | |
| import qualified Data.ByteString.Lazy as B | |
| import Sound | |
| outputSound = B.putStr.B.pack.map fromIntegral.scale (0,255) | |
| main = do | |
| [frequency,volume,duration] <- getArgs | |
| let f = read frequency :: Int | |
| let d = read duration :: Int |
| import Control.Monad | |
| import Data.List | |
| -- http://xkcd.com/287/ | |
| -- On voudrait pour 15.05 € de tapas; SVP | |
| menu = [("gambas" ,215), | |
| ("aceitunas" ,275), | |
| ("choquitos" ,335), | |
| ("empanada" ,355), |
| opa test.opa hello.opa --database mongo |
| module YakGraph(listOfClusterNames, listOfNodesPerCluster, countOfNodesPerCluster) where | |
| import Data.GraphViz.Types | |
| import Data.GraphViz.Types.Graph | |
| import Data.GraphViz.Commands.IO | |
| import qualified Data.Map as M | |
| import Data.List(groupBy) | |
| import Data.Maybe | |
| import Data.Text.Lazy(unpack) | |
| import Data.Sequence(Seq) | |
| import Data.Foldable(toList) |
| public class AnnotatedASTParserTest { | |
| //~ ---------------------------------------------------------------------------------------------------------------- | |
| //~ Methods | |
| //~ ---------------------------------------------------------------------------------------------------------------- | |
| @Test | |
| public void canProduceAnASTWithSourceForEachNode() throws Exception { | |
| Parser<?> lparen = Scanners.isChar('('); | |
| Parser<?> rparen = Scanners.isChar(')'); |
| public final class Productions { | |
| //~ ---------------------------------------------------------------------------------------------------------------- | |
| //~ Static fields/initializers | |
| //~ ---------------------------------------------------------------------------------------------------------------- | |
| private static final Logger DEFAULT_LOGGER = Logger.getLogger(Productions.class.getName()); | |
| //~ ---------------------------------------------------------------------------------------------------------------- | |
| //~ Constructors |
source: Eurostat
| [INFO] Scanning for projects... | |
| [INFO] | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Building CodeStory - Http Server 1.29-SNAPSHOT | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] | |
| [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ http --- | |
| [INFO] Deleting d:\projects\code-story-http\target | |
| [INFO] | |
| [INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven) @ http --- |