mathialo/bython

Set initializers should work for bython

kjsingh opened this issue · 1 comments

import os

def main(){
  c= {1,3}
  print('hello')
  print({'A':1,
        'b':2}
        )
}
main()

Fails with

  File "python_main.py", line 4
    c=:1,3
    ^
IndentationError: expected an indented block

Try ending your statements with semicolons.