This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://html-lang.org/html.js"></script> | |
| <script> | |
| html.meta.commands["pre"] = function (elt, env) { | |
| env.stack.push(elt.innerHTML); | |
| } | |
| html.meta.out = function (...args) { | |
| document.getElementById("output_display").innerHTML += JSON.stringify(args) + "\n"; | |
| } | |
| window.newline = "\n"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://html-lang.org/html.js"></script> | |
| <script> | |
| html.meta.commands["pre"] = function(elt, env) { | |
| env.stack.push(elt.innerHTML); | |
| } | |
| window.newline = "\n"; | |
| </script> | |
| <main> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private static void Main() | |
| { | |
| var reader = | |
| new StringReader(" Hello world! asd!lfkj ...d ...ю...d .. lasdfj']al skdfj.lask ;! k lkj "); | |
| var writer = new StringWriter(); | |
| CharacterInfo c; | |
| State state = State.TrailingSpaces; | |
| c = reader.ReadChar(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace cshrap | |
| { | |
| internal class Program | |
| { | |
| public static void Main(string[] args) | |
| { | |
| // создаем массив разных людей | |
| Human[] arr = |
