Module: RBF::Syntax

Defined in:
lib/rbf/syntax.rb

Constant Summary collapse

Default =
{
  :forward  => '>',
  :backward => '<',

  :increase => '+',
  :decrease => '-',

  :output => '.',
  :input  => ',',

  :while_start => '[',
  :while_end   => ']'
}
Nintendo =
{
  :forward  => '!!!!',
  :backward => 'ASD',

  :increase => 'XD',
  :decrease => 'LOL',

  :output => 'PLS',
  :input  => 'CMQ',

  :while_start => '[',
  :while_end   => ']'
}
Trollscript =
{
  :forward  => 'ooo',
  :backward => 'ool',

  :increase => 'olo',
  :decrease => 'oll',

  :output => 'loo',
  :input  => 'lol',

  :while_start => 'llo',
  :while_end   => 'lll'
}