Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 415fa4cc4d404a0681199f79f4f164161b823395 https://github.com/perl6/specs/commit/415fa4cc4d404a0681199f79f4f164161b823395 Author: Elizabeth Mattijsen <l...@dijkmat.nl> Date: 2015-06-04 (Thu, 04 Jun 2015)
Changed paths: M S17-concurrency.pod Log Message: ----------- Revert "S17: sub start is deprecated" start as a sub is deprecated, start as a statement is still very much there! start 42; # now works start { 42 }; # already works, was handled by sub, now in grammar start( { 42 } ); # still works, but deprecated