This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package calculator | |
| sealed abstract class Expr | |
| final case class Literal(v: Double) extends Expr | |
| final case class Ref(name: String) extends Expr | |
| final case class Plus(a: Expr, b: Expr) extends Expr | |
| final case class Minus(a: Expr, b: Expr) extends Expr | |
| final case class Times(a: Expr, b: Expr) extends Expr | |
| final case class Divide(a: Expr, b: Expr) extends Expr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # build.sbt | |
| name := "akka-chat" | |
| version := "1.0" | |
| resolvers += "spray repo" at "http://repo.spray.io" | |
| libraryDependencies ++= Dependencies.demoAkka |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Bibliotecas Marvel completas | |
| ============================ | |
| Vengadores 32 tomos | |
| Capitán Marvel 10 tomos | |
| Namor 15 tomos | |
| Patrulla-X 12 tomos | |
| Eternos 3 tomos | |
| Nick Furia 1 tomo | |
| Viuda Negra 1 tomo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Symfony2 Performance Tests | |
| ========================== | |
| What is tested? Basically the simplest application you can develop with Symfony2 (Version 2.2.0). | |
| Composer was run with -o flag which optimizes autoload creating a classmap | |
| <?php | |
| namespace RicardClau\Bundle\BenchmarkBundle\Controller; |