commit - b1ab1de9ec3bc46cee64091764ba11319dc88b91
commit + 3122c282528bd0d797e0d8cee4546818b0a9b174
blob - 104350d5eff6dec8df14405355869548568cfec5
blob + 7e96f4322afcc0af26ffeea7bfd61b0bd29611f1
--- main.algo
+++ main.algo
-char values = [ ' 1', ' 2', ' 3', ' 4', ' 5', ' 6', ' 7', ' 8', ' 9',
- '10', ' J', ' Q', ' K', ' A' ]
+char stdrd = [ 'A ', '10', 'K ', 'Q ', 'J ', '9 ', '8 ', '7 ' ]
+int v_std = [ 11, 10, 4, 3, 2, 0, 0, 0 ]
+char trump = [ 'J ', ' 9', 'A ', '10', 'K ', 'Q ', '8 ', '7 ' ]
+int v_trm = [ 20, 14, 11, 10, 4, 3, 0, 0 ]
+
//hearts, diamonds, spades, coins
-char suits = [ 'H', 'D', 'S', 'C' ]
+char suits = [ ' H', ' D', ' S', ' C' ]
struct card { int suit; int value }
-
+int players = [ 0, 1, 2, 3, 4 ]
+
+/* shuffle/cut */
+
+/* deal */
+ /* bargain 1,2 (3,4) */
+
+/* turn */
+ n
+
+
+/*