Skip to content

Instantly share code, notes, and snippets.

; Written by BPQConfigGen
SIMPLE
NODECALL=KD2YCK-7
NODEALIAS=YCKBBS
LOCATOR=FN20
INFOMSG:
KD2YCK's BPQ PBBS node, welcome from NJ
***
scala 2.11.12
sbt 0.13.18
launched with scala 2.11.12 on the path
All works fine when build is set for scala 2.10 in sbt
A test project using same env and sbt for scala 2.11 works fine, with scalatest and scalacheck and many same dependencies
Pruned build to leaf modules (that work) in the main build + first module where it fails
config has no tests, so is fine
@LouisJB
LouisJB / gist:1688bb14a46f00d4cbf2
Last active August 29, 2015 14:02
basic haskell randoms and io
module Main( main ) where
import System.Environment
import System.Random
import Text.Printf
import Control.Monad
data Player = PlayerA | PlayerB
deriving (Show, Eq)