ASUS X99-A
- £172.25
| // Rates | |
| rate "128000" | |
| cl_cmdrate "128" | |
| cl_updaterate "128" | |
| cl_interp "0.0" | |
| cl_interp_ratio "1" | |
| cl_lagcompensation "1" | |
| //MOTD | |
| cl_disablehtmlmotd "1" |
I hereby claim:
To claim this, I am signing this object:
| defmodule Sjt do | |
| def perms([]), do: [[]] | |
| def perms(l = [_h|_t]) do | |
| for h <- l, t <- perms(l -- [h]), do: [h|t] | |
| end | |
| end |
| defmodule BTree do | |
| defstruct tree: nil | |
| def new(e), do: %BTree{tree: {e, nil, nil}} | |
| def insert(%BTree{tree: root}, element) do | |
| %BTree{tree: do_insert(root, element)} | |
| end | |
| defp do_insert(nil, element) do |
| function getBox(board, x, y) { | |
| var from = x * 3; | |
| var to = from + 3; | |
| var target = y * 3; | |
| return board[0+target].slice(from, to) | |
| .concat(board[1+target].slice(from, to)) | |
| .concat(board[2+target].slice(from, to)) | |
| } |
| // PACKAGES | |
| //commented out to get ws to run | |
| //package foo | |
| object bar { | |
| } | |
| class bam { |
| import scala.annotation.tailrec | |
| val x = new Rational(1, 3) | |
| val y = new Rational(5, 7) | |
| val z = new Rational(3, 2) | |
| x.numer | |
| x.denom | |
| x - y - z |
| class Nails | |
| def to_s | |
| "nails" | |
| end | |
| end | |
| class Glue | |
| def to_s | |
| "glue" | |
| end |