Skip to content

Instantly share code, notes, and snippets.

@xixixao
Last active August 29, 2015 13:57
Show Gist options
  • Save xixixao/9616932 to your computer and use it in GitHub Desktop.
Save xixixao/9616932 to your computer and use it in GitHub Desktop.
render: ->
_.table _,
_.thead _,
_.tr _,
_.th "BV"
_.th "x1"
_.th "x2"
_.th "x3"
_.th "x4"
_.th "RHS"
_.tbody _,
_.tr _,
_.td "z"
_.td "3"
_.td "4"
_.td "5"
_.td "0"
_.td "0"
_.tr _,
_.td "x"
_.td "3"
_.td "4"
_.td "5"
_.td "0"
_.td "0"
render: ->
_table
_thead
_tr
_th "BV"
_th "x1"
_th "x2"
_th "x3"
_th "x4"
_th "RHS"
_tbody
_tr
_td "z"
_td "3"
_td "4"
_td "5"
_td "0"
_td "0"
_tr
_td "x"
_td "3"
_td "4"
_td "5"
_td "0"
_td "0"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment