enum irk and hardware programming instructions for assembler

2023-11-20 Thread Birke Heeren
package irk; public enum Irk { IRK, END_IRK, HASH, END_HASH, COLON, ARRAY, END_ARRAY, QUOTE, END_QUOTE, COMMA; public static String is_irk = " i**irk0"; // when the character irk is detected, the language irk is present public static String is_end_irk = " i**irk1"; public static St

enum irk with comments

2023-11-20 Thread Birke Heeren
package irk; public enum Irk { IRK, END_IRK, HASH, END_HASH, COLON, ARRAY, END_ARRAY, QUOTE, END_QUOTE, COMMA; public static String is_irk = " i**irk0"; // when the character irk is detected, the language irk is present public static String is_end_irk = " i**irk1"; public static St

enum irk

2023-11-20 Thread Birke Heeren
package irk; public enum Irk { IRK, END_IRK, HASH, END_HASH, COLON, ARRAY, END_ARRAY, QUOTE, END_QUOTE, COMMA; public static String is_irk = " i**irk0"; // when the character irk is detected, the language irk is present public static String is_end_irk = " i**irk1"; public static

irk character set (Birke Heeren)

2023-11-19 Thread Birke Heeren
/* * when the character irk is detected, the language irk is present * */ public enum Irk { IRK, END_IRK, HASH, END_HASH, COLON, ARRAY, END_ARRAY, QUOTE, END_QUOTE, COMMA; public static String is_irk = " i**irk0"; public static String is_end_irk = " i**irk1"; public static String is

new JEP: DeepClone API

2023-11-16 Thread Birke Heeren
idea (How do I learn to do this?) clazz deepclone = new DeepClone().do(object_to_be_copied); class DeepClone clazz do (clazz object_to_be_copied) { return new PerlDecoder().do(new PerlEncoder().do(object_to_be_copied)); } JSON can be cloned by copying perl deepclones through JSON all programmi

clazz deepclone = new DeepClone().do(object_to_be_copied); JEP 198: Light-Weight JSON API

2023-11-08 Thread Birke Heeren
, Birke Heeren