diff options
| author | Ben Culkin <scorpress@gmail.com> | 2023-06-23 19:48:38 -0400 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2023-06-23 19:48:38 -0400 |
| commit | 2df02c35b70f7e8077832470de9594b657f1be67 (patch) | |
| tree | 4353ce1f78571e038bbe8fed62d321c77a7b868c /base/src/examples/java | |
| parent | 4a96d9cad446ea405b51dfeebb01a1b6d7f6fb2b (diff) | |
Add terminal
This is some functionality based on the way that MVS/other IBM OSes
handle their UI
Diffstat (limited to 'base/src/examples/java')
| -rw-r--r-- | base/src/examples/java/bjc/utils/examples/cli/StreamTerminalExample.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/base/src/examples/java/bjc/utils/examples/cli/StreamTerminalExample.java b/base/src/examples/java/bjc/utils/examples/cli/StreamTerminalExample.java new file mode 100644 index 0000000..208ecf7 --- /dev/null +++ b/base/src/examples/java/bjc/utils/examples/cli/StreamTerminalExample.java @@ -0,0 +1,11 @@ +package bjc.utils.examples.cli; + +import java.util.Scanner; + +public class StreamTerminalExample { + public static void main(String[] args) { + Scanner sysIn = new Scanner(System.in); + + // TODO Figure out a good way to demo this + } +} |
