I don't know how to send coins yet though. I better figure that out before it gets on an exchange.
If you mean non-programmatically then just use the GUI wallet

from CLI:
eth.sendTransaction({from: eth.accounts[0], to: eth.accounts[1], value: 1, gas: 22000})
This command transfers 1e-18
shf Shift from account0 to account1, gas is optional
The value is given in the smallest unit, because unit conversion (e.g. web3.toShf(1, "Eshf") ) seem not to work.