diff --git a/README.md b/README.md index 2f498ce..e7d7f7f 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ The Java language in Source Academy currently supports a host of available featu - Explicit type conversion (type narrowing) - Implicit type conversion for system calls (e.g. int input to System.out.println) - Single nested class +- Exceptions ## Future Features diff --git a/src/compiler/README.md b/src/compiler/README.md index c63de65..7fa0faa 100644 --- a/src/compiler/README.md +++ b/src/compiler/README.md @@ -1,7 +1,5 @@ This is a bookkeeping of the planned scope of the compiler. It will be updated from time to time to reflect the current status of the compiler and to make the scope clearer. For a more formal treatment of what features are being supported, see scope.txt for a BNF-form of the Java sub-language. -Note that the compiler is separate from the Java Playground in the online version of Source Academy, which runs in tandem with the ECE. As such, any program run in the Playground will follow the features implemented in the ECE (e.g. widening type conversions), rather than the features below. - **Features that are already supported** - Single source file, single public class, with exactly one main method