duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
GNU Octave is a high-level interpreted language, primarily intended for numerical computations.
(via GNU Octave)
Hint: I also mad an octave docset for Dash: https://github.com/obstschale/octave-docset
<?php | |
interface Option/*[T]*/ { | |
/** | |
* @return T | |
*/ | |
public function get(); | |
/** | |
* @param => T $f |
// http://en.wikipedia.org/wiki/Decorator_pattern | |
trait Coffee { | |
def cost:Double | |
def ingredients: String | |
} | |
class SimpleCoffee extends Coffee { | |
override def cost = 1 | |
override def ingredients = "Coffee" |