Skip to content

Instantly share code, notes, and snippets.

Translate {{ docsから見たURLのパス }} in Japanese

This is a...

  • Feature Request
  • Bug Report

Problem: No {{ docsから見たURLのパス }} in Japanese.

### Keybase proof
I hereby claim:
* I am cstoku on github.
* I am cstoku (https://keybase.io/cstoku) on keybase.
* I have a public key ASCWeD3p6VDhSEkWEjROdpwc0YnIltR3lGig_1JkBsPqugo
To claim this, I am signing this object:
import scala.language.implicitConversions
class Rational(n : Int, d: Int) {
require(d != 0)
private val g = gcd(n.abs, d.abs)
val numer: Int = n / g
val denom: Int = d / g
def this(n: Int) = this(n, 1)
>>> try:
... raise Exception()
... except Exception as e:
... raise e
... finally:
... print('final')
...
final
Traceback (most recent call last):
File "<stdin>", line 4, in <module>