@liascript/editor 1.1.0--0.10.24 → 1.1.0--0.10.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -23,7 +23,7 @@ install via npm:
23
23
  `npm i @liascript/editor`
24
24
 
25
25
  > **Note:** The version information might look a bit different e.g.
26
- > `1.1.0--0.10.24`. The second version mirrors current version of LiaScript,
26
+ > `1.1.0--0.10.25`. The second version mirrors current version of LiaScript,
27
27
  > while the first number is referring to the changes of the editor-branch.
28
28
 
29
29
  ## HowTo
package/dist/App.java ADDED
@@ -0,0 +1,17 @@
1
+ import java.io.*;
2
+ class App {
3
+ public static void main(String args[])
4
+ throws IOException
5
+ {
6
+ // create a BufferedReader using System.in
7
+ BufferedReader obj = new BufferedReader(new InputStreamReader(System.in));
8
+ String str;
9
+
10
+ System.out.println("Enter lines of text.");
11
+ System.out.println("Enter 'stop' to quit.");
12
+ do {
13
+ str = obj.readLine();
14
+ System.err.println(str);
15
+ } while(!str.equals("stop"));
16
+ }
17
+ }