Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 515 Bytes

CHANGELOG.md

File metadata and controls

18 lines (17 loc) · 515 Bytes

0.4.0

rapydscript language

  • Functions within objects indent properly with new line
bob = {
    a: def():
        print('indented')
}
  • Added anonymous functions ie. def():
  • Assigned functions ie. bob = def(): will now indent with new line
bob = def():
    print('indented')
  • added various javascript names to highlighting: console, alert (print and alert snippets added as well)
  • xrange was removed as it does not exist in rapydscript