Skip to content

Instantly share code, notes, and snippets.

@invkrh
Created January 17, 2016 22:26
Show Gist options
  • Save invkrh/27a2402d317326e2a63c to your computer and use it in GitHub Desktop.
Save invkrh/27a2402d317326e2a63c to your computer and use it in GitHub Desktop.
<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