Created
January 17, 2016 22:26
-
-
Save invkrh/27a2402d317326e2a63c to your computer and use it in GitHub Desktop.
This file contains 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
<html> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.1.0/styles/monokai.min.css"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.1.0/highlight.min.js"></script> | |
<script>hljs.initHighlightingOnLoad();</script> | |
<body> | |
<pre> | |
<code class="scala">/** | |
* A person has a name and an age. | |
*/ | |
case class Person(name: String, age: Int) | |
abstract class Vertical extends CaseJeu | |
case class Haut(a: Int) extends Vertical | |
case class Bas(name: String, b: Double) extends Vertical | |
</code> | |
</pre> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment