pseudo-lang / pseudo

transpile algorithms/libs to idiomatic JS, Go, C#, Ruby
MIT License
685 stars 43 forks source link

Error in generating boolean literal in ruby #11

Closed jzjsuper closed 8 years ago

jzjsuper commented 8 years ago

test.py:

a = True
b = False

Generate test.rb by executing $ pseudo-python test.py test.rb

Generated test.rb:

a = True
b = False

Expected test.rb:

a = true
b = false
alehander92 commented 8 years ago

That was actually a Pseudo-Python bug, thank you!

Fixed after that commit