├── .gitattributes ├── apps ├── attractors.html ├── demo.html ├── easy_tut2.js ├── easy_tut2x.js ├── makefile ├── mk ├── mk_aoc ├── mk_demo ├── mk_show ├── progfun.html ├── reaction_test.html ├── show.html ├── showaoc.html ├── test.html ├── tr.py ├── tut_blackj.html ├── tut_cipher.html ├── tut_mcarlo.html ├── tut_sorting.html └── w.txt ├── main ├── easy.js ├── easy_ide.js ├── icon.kab ├── icon.png ├── icon.svg ├── ide.html ├── kbas.c ├── kbasw.h ├── kbasw.js ├── kfunc.h ├── klex.h ├── klib.h ├── kparse.h ├── kwasm.h ├── makefile ├── mfst.json ├── qrcode.js ├── sw.js ├── swreg.js ├── tut_docu.js ├── tut_func.js ├── tut_game.js ├── tut_id.js ├── tut_learn.js ├── tut_learnx.js └── tut_test.html ├── misc ├── 19.html ├── aoc15 │ ├── 1.el │ ├── 10.el │ ├── 11.el │ ├── 12.el │ ├── 13.el │ ├── 14.el │ ├── 15.el │ ├── 16.el │ ├── 17.el │ ├── 18.el │ ├── 19.el │ ├── 2.el │ ├── 20.el │ ├── 21.el │ ├── 22.el │ ├── 23.el │ ├── 24.el │ ├── 25.el │ ├── 3.el │ ├── 4.el │ ├── 5.el │ ├── 6.el │ ├── 7.el │ ├── 8.el │ ├── 9.el │ └── sol.txt ├── aoc16 │ ├── 1.el │ ├── 10.el │ ├── 11.el │ ├── 12.el │ ├── 13.el │ ├── 14.el │ ├── 15.el │ ├── 16.el │ ├── 17.el │ ├── 18.el │ ├── 19.el │ ├── 2.el │ ├── 20.el │ ├── 21.el │ ├── 22.el │ ├── 23.el │ ├── 24.el │ ├── 25.el │ ├── 3.el │ ├── 4.el │ ├── 5.el │ ├── 6.el │ ├── 7.el │ ├── 8.el │ ├── 9.el │ └── sol.txt ├── aoc17 │ ├── 1.el │ ├── 10.el │ ├── 11.el │ ├── 12.el │ ├── 13.el │ ├── 14.el │ ├── 15.el │ ├── 16.el │ ├── 17.el │ ├── 18.el │ ├── 19.el │ ├── 2.el │ ├── 20.el │ ├── 21.el │ ├── 22.el │ ├── 23.el │ ├── 24.el │ ├── 25.el │ ├── 3.el │ ├── 4.el │ ├── 5.el │ ├── 6.el │ ├── 7.el │ ├── 8.el │ ├── 9.el │ └── sol.txt ├── aoc18 │ ├── 1.el │ ├── 10.el │ ├── 11.el │ ├── 12.el │ ├── 13.el │ ├── 14.el │ ├── 15.el │ ├── 16.el │ ├── 17.el │ ├── 18.el │ ├── 19.el │ ├── 2.el │ ├── 20.el │ ├── 21.el │ ├── 22.el │ ├── 23.el │ ├── 24.el │ ├── 25.el │ ├── 3.el │ ├── 4.el │ ├── 5.el │ ├── 6.el │ ├── 7.el │ ├── 8.el │ ├── 9.el │ └── sol.txt ├── aoc19 │ ├── 1.el │ ├── 10.el │ ├── 11.el │ ├── 12.el │ ├── 13.el │ ├── 14.el │ ├── 15.el │ ├── 16.el │ ├── 17.el │ ├── 18.el │ ├── 19.el │ ├── 2.el │ ├── 20.el │ ├── 21.el │ ├── 22.el │ ├── 23.el │ ├── 24.el │ ├── 25.el │ ├── 3.el │ ├── 4.el │ ├── 5.el │ ├── 6.el │ ├── 7.el │ ├── 8.el │ ├── 9.el │ ├── makefile │ ├── mk │ └── sol.txt ├── aoc20 │ ├── 1.el │ ├── 10.el │ ├── 11.el │ ├── 12.el │ ├── 13.el │ ├── 14.el │ ├── 15.el │ ├── 16.el │ ├── 17.el │ ├── 18.el │ ├── 19.el │ ├── 2.el │ ├── 20.el │ ├── 21.el │ ├── 22.el │ ├── 23.el │ ├── 24.el │ ├── 25.el │ ├── 3.el │ ├── 4.el │ ├── 5.el │ ├── 6.el │ ├── 7.el │ ├── 8.el │ ├── 9.el │ ├── makefile │ ├── mk │ └── sol.txt ├── aoc21 │ ├── 1.el │ ├── 10.el │ ├── 11.el │ ├── 12.el │ ├── 13.el │ ├── 14.el │ ├── 15.el │ ├── 16.el │ ├── 17.el │ ├── 18.el │ ├── 19.el │ ├── 2.el │ ├── 20.el │ ├── 21.el │ ├── 22.el │ ├── 23.el │ ├── 24.el │ ├── 25.el │ ├── 3.el │ ├── 4.el │ ├── 5.el │ ├── 6.el │ ├── 7.el │ ├── 8.el │ ├── 9.el │ ├── mkinp.txt │ ├── sol.txt │ └── work.txt ├── aoc22 │ ├── 1.el │ ├── 10.el │ ├── 11.el │ ├── 12.el │ ├── 13.el │ ├── 14.el │ ├── 15.el │ ├── 16.el │ ├── 17.el │ ├── 18.el │ ├── 19.el │ ├── 2.el │ ├── 20.el │ ├── 21.el │ ├── 22.el │ ├── 23.el │ ├── 24.el │ ├── 25.el │ ├── 3.el │ ├── 4.el │ ├── 5.el │ ├── 6.el │ ├── 7.el │ ├── 8.el │ ├── 9.el │ ├── mkinp.txt │ ├── sol.txt │ ├── solx.txt │ ├── vers │ │ ├── 16.el │ │ ├── 16_old.el │ │ ├── 16dfs.el │ │ ├── 19bfs.el │ │ └── 22bfsok.el │ └── w.txt ├── aoc23 │ ├── 1.el │ ├── 10.el │ ├── 11.el │ ├── 12.el │ ├── 13.el │ ├── 14.el │ ├── 15.el │ ├── 16.el │ ├── 17.el │ ├── 18.el │ ├── 19.el │ ├── 2.el │ ├── 20.el │ ├── 21.el │ ├── 22.el │ ├── 23.el │ ├── 23_1.el │ ├── 24.el │ ├── 25.el │ ├── 3.el │ ├── 4.el │ ├── 5.el │ ├── 6.el │ ├── 7.el │ ├── 8.el │ ├── 9.el │ └── sol.txt ├── aoc24 │ ├── 1.el │ ├── 10.el │ ├── 11.el │ ├── 12.el │ ├── 13.el │ ├── 14.el │ ├── 15.el │ ├── 16.el │ ├── 17.el │ ├── 18.el │ ├── 19.el │ ├── 2.el │ ├── 20.el │ ├── 21.el │ ├── 22.el │ ├── 23.el │ ├── 24.el │ ├── 25.el │ ├── 3.el │ ├── 4.el │ ├── 5.el │ ├── 6.el │ ├── 7.el │ ├── 8.el │ ├── 9.el │ ├── sol.txt │ └── vers │ │ └── 6.el ├── learnxy.md ├── privacy.html ├── root_easylang.html ├── root_kabas.html ├── root_leo.html ├── root_tiki.html ├── root_tiki.html.1 ├── ros │ ├── 10001th_prime.el │ ├── 100_doors.el │ ├── 100_prisoners.el │ ├── 15_puzzle_game.el │ ├── 2048.el │ ├── 21_game.el │ ├── 24_game.el │ ├── 4-rings_or_4-squares_puzzle.el │ ├── 99_bottles_of_beer.el │ ├── 9_billion_names_of_God_the_integer.el │ ├── A+B.el │ ├── ABC_correlation.el │ ├── ABC_problem.el │ ├── ABC_words.el │ ├── AKS_test_for_primes.el │ ├── Abbreviations,_automatic.el │ ├── Abbreviations,_easy.el │ ├── Abbreviations,_simple.el │ ├── Abelian_sandpile_model+Identity.el │ ├── Abelian_sandpile_model.el │ ├── Abundant,_deficient_and_perfect_number_classifications.el │ ├── Abundant_odd_numbers.el │ ├── Achilles_numbers.el │ ├── Ackermann_function.el │ ├── Addition_chains.el │ ├── Additive_primes.el │ ├── Air_mass.el │ ├── Align_columns.el │ ├── Aliquot_sequence_classifications.el │ ├── Almost_prime.el │ ├── Alternade_words.el │ ├── Amb.el │ ├── Amicable_pairs.el │ ├── Anagrams+Deranged_anagrams.el │ ├── Anagrams.el │ ├── Anaprimes.el │ ├── Angle_difference_between_two_bearings.el │ ├── Angles_(geometric),_normalization_and_conversion.el │ ├── Animate_a_pendulum.el │ ├── Animated_Spinners.el │ ├── Animation.el │ ├── Anti-primes.el │ ├── Append_numbers_at_same_position_in_strings.el │ ├── Approximate_equality.el │ ├── Archimedean_spiral.el │ ├── Arithmetic+Complex.el │ ├── Arithmetic+Integer.el │ ├── Arithmetic-geometric_mean+Calculate_Pi.el │ ├── Arithmetic-geometric_mean.el │ ├── Arithmetic_derivative.el │ ├── Arithmetic_evaluation.el │ ├── Arithmetic_numbers.el │ ├── Array_concatenation.el │ ├── Array_length.el │ ├── Arrays.el │ ├── Ascending_primes.el │ ├── Associative_array+Creation.el │ ├── Associative_array+Iteration.el │ ├── Associative_array+Merging.el │ ├── Attractive_numbers.el │ ├── Average_loop_length.el │ ├── Averages+Arithmetic_mean.el │ ├── Averages+Mean_angle.el │ ├── Averages+Mean_time_of_day.el │ ├── Averages+Median.el │ ├── Averages+Mode.el │ ├── Averages+Pythagorean_means.el │ ├── Averages+Root_mean_square.el │ ├── Averages+Simple_moving_average.el │ ├── B-spline.el │ ├── Babbage_problem.el │ ├── Babylonian_spiral.el │ ├── Bacon_cipher.el │ ├── Balanced_brackets.el │ ├── Barnsley_fern.el │ ├── Base_16_numbers_needing_a_to_f.el │ ├── Bell_numbers.el │ ├── Benford's_law.el │ ├── Bernoulli's_triangle.el │ ├── Bernstein_basis_polynomials.el │ ├── Best_shuffle.el │ ├── Bifid_cipher.el │ ├── Bin_given_limits.el │ ├── Binary_digits.el │ ├── Binary_search.el │ ├── Binomial_transform.el │ ├── Bioinformatics+Sequence_mutation.el │ ├── Bioinformatics+Subsequence.el │ ├── Bioinformatics+base_count.el │ ├── Biorhythms.el │ ├── Birthday_problem.el │ ├── Bitmap+Bresenham's_line_algorithm.el │ ├── Bitmap+Bézier_curves+Quadratic.el │ ├── Bitmap+Midpoint_circle_algorithm.el │ ├── Bitwise_operations.el │ ├── Blum_integer.el │ ├── Boolean_values.el │ ├── Boustrophedon_transform.el │ ├── Box_the_compass.el │ ├── Boyer-Moore_string_search.el │ ├── Brace_expansion.el │ ├── Brazilian_numbers.el │ ├── Brilliant_numbers.el │ ├── Brownian_tree.el │ ├── Bulls_and_cows+Player.el │ ├── Bulls_and_cows.el │ ├── Burrows–Wheeler_transform.el │ ├── CORDIC.el │ ├── CRC-32.el │ ├── CSV_data_manipulation.el │ ├── CSV_to_HTML_translation.el │ ├── CUSIP.el │ ├── Caesar_cipher.el │ ├── Calculating_the_value_of_e.el │ ├── Calendar.el │ ├── Calkin-Wilf_sequence.el │ ├── Call_a_function.el │ ├── CalmoSoft_primes.el │ ├── Calmo_numbers.el │ ├── Camel_case_and_snake_case.el │ ├── Canonicalize_CIDR.el │ ├── Cantor_set.el │ ├── Carmichael_3_strong_pseudoprimes.el │ ├── Cartesian_product_of_two_or_more_lists.el │ ├── Case-sensitivity_of_identifiers.el │ ├── Casting_out_nines.el │ ├── Catalan_numbers+Pascal's_triangle.el │ ├── Catalan_numbers.el │ ├── Centre_and_radius_of_a_circle_passing_through_3_points_in_a_plane.el │ ├── Centroid_of_a_set_of_N-dimensional_points.el │ ├── Change_e_letters_to_i_in_words.el │ ├── Changeable_words.el │ ├── Chaocipher.el │ ├── Chaos_game.el │ ├── Character_codes.el │ ├── Chebyshev_coefficients.el │ ├── Check_if_a_polygon_overlaps_with_a_rectangle.el │ ├── Check_if_two_polygons_overlap.el │ ├── Chemical_calculator.el │ ├── Cheryl's_birthday.el │ ├── Chinese_remainder_theorem.el │ ├── Chinese_zodiac.el │ ├── Cholesky_decomposition.el │ ├── Chowla_numbers.el │ ├── Cipolla's_algorithm.el │ ├── Circles_of_given_radius_through_two_points.el │ ├── Circular_primes.el │ ├── Cistercian_numerals.el │ ├── Closest-pair_problem.el │ ├── Code_Golf:_Code_Golf.el │ ├── Collect_and_sort_square_numbers_in_ascending_order_from_three_lists.el │ ├── Collections.el │ ├── Color_Difference_CIE_ΔE2000.el │ ├── Color_wheel.el │ ├── Colorful_numbers.el │ ├── Colour_bars+Display.el │ ├── Colour_pinstripe+Display.el │ ├── Combinations.el │ ├── Combinations_and_permutations.el │ ├── Combinations_with_repetitions+Square_digit_chain.el │ ├── Combinations_with_repetitions.el │ ├── Comma_quibbling.el │ ├── Comments.el │ ├── Common_list_elements.el │ ├── Common_sorted_list.el │ ├── Compare_a_list_of_strings.el │ ├── Compare_length_of_two_strings.el │ ├── Composite_numbers_k_with_no_single_digit_factors_whose_factors_are_all_substrings_of_k.el │ ├── Concatenate_two_primes_is_also_prime.el │ ├── Conditional_structures.el │ ├── Conjugate_a_Latin_verb.el │ ├── Consecutive_primes_with_ascending_or_descending_differences.el │ ├── Constrained_random_points_on_a_circle.el │ ├── Continued_fraction.el │ ├── Continued_fraction_convergents.el │ ├── Convert_day_count_to_ordinal_date.el │ ├── Convert_decimal_number_to_rational.el │ ├── Convert_seconds_to_compound_duration.el │ ├── Convex_hull.el │ ├── Conway's_Game_of_Life.el │ ├── Coprime_triplets.el │ ├── Coprimes.el │ ├── Copy_a_string.el │ ├── Count_how_many_vowels_and_consonants_occur_in_a_string.el │ ├── Count_in_factors.el │ ├── Count_in_octal.el │ ├── Count_occurrences_of_a_substring.el │ ├── Count_the_coins+0-1.el │ ├── Count_the_coins.el │ ├── Count_the_occurrence_of_each_digit_in_e.el │ ├── Cousin_primes.el │ ├── Cramer's_rule.el │ ├── Create_a_two-dimensional_array_at_runtime.el │ ├── Create_an_HTML_table.el │ ├── Cuban_primes.el │ ├── Cubic_special_primes.el │ ├── Cullen_and_Woodall_numbers.el │ ├── Cumulative_standard_deviation.el │ ├── Currency.el │ ├── Curve_that_touches_three_points.el │ ├── Curzon_numbers.el │ ├── Cut_a_rectangle.el │ ├── Cycle_detection.el │ ├── Cyclops_numbers.el │ ├── Damm_algorithm.el │ ├── Date_format.el │ ├── Dating_agency.el │ ├── Day_of_the_week.el │ ├── Day_of_the_week_of_Christmas_and_New_Year.el │ ├── Days_between_dates.el │ ├── De_Bruijn_sequences.el │ ├── De_Polignac_numbers.el │ ├── Deal_cards_for_FreeCell.el │ ├── Death_Star.el │ ├── Deceptive_numbers.el │ ├── Decimal_floating_point_number_to_binary.el │ ├── Decision_tables.el │ ├── Deconvolution+1D.el │ ├── Decorate-sort-undecorate_idiom.el │ ├── Decreasing_contiguous_subsequences.el │ ├── Deepcopy.el │ ├── Deming's_funnel.el │ ├── Department_numbers.el │ ├── Descending_primes.el │ ├── Detect_division_by_zero.el │ ├── Determinant_and_permanent.el │ ├── Determine_if_a_string_has_all_the_same_characters.el │ ├── Determine_if_a_string_has_all_unique_characters.el │ ├── Determine_if_a_string_is_collapsible.el │ ├── Determine_if_a_string_is_numeric.el │ ├── Determine_if_a_string_is_squeezable.el │ ├── Determine_if_two_triangles_overlap.el │ ├── Determine_sentence_type.el │ ├── Dice_game_probabilities.el │ ├── Digit_fifth_powers.el │ ├── Digital_root+Multiplicative_digital_root.el │ ├── Digital_root.el │ ├── Dijkstra's_algorithm.el │ ├── Dinesman's_multiple-dwelling_problem.el │ ├── Disarium_numbers.el │ ├── Discordian_date.el │ ├── Display_a_linear_combination.el │ ├── Distinct_palindromes_within_decimal_numbers.el │ ├── Distinct_power_numbers.el │ ├── Distribution_of_0_digits_in_factorial_series.el │ ├── Diversity_prediction_theorem.el │ ├── Dividuus_numbers.el │ ├── Doomsday_rule.el │ ├── Dot_product.el │ ├── Double_Twin_Primes.el │ ├── Dragon_curve.el │ ├── Draw_a_clock.el │ ├── Draw_a_cuboid.el │ ├── Draw_a_pixel.el │ ├── Draw_a_rotating_cube.el │ ├── Draw_a_sphere.el │ ├── Duffinian_numbers.el │ ├── Dutch_national_flag_problem.el │ ├── EKG_sequence_convergence.el │ ├── Earliest_difference_between_prime_gaps.el │ ├── Eban_numbers.el │ ├── Egyptian_division.el │ ├── Element-wise_operations.el │ ├── Elementary_cellular_automaton+Infinite_length.el │ ├── Elementary_cellular_automaton.el │ ├── Emirp_primes.el │ ├── Empty_program.el │ ├── Empty_string.el │ ├── Endless_maze.el │ ├── Engel_expansion.el │ ├── Entropy.el │ ├── Equal_prime_and_composite_sums.el │ ├── Equilibrium_index.el │ ├── Erdös-Selfridge_categorization_of_primes.el │ ├── Erdős-Nicolas_numbers.el │ ├── Erdős-primes.el │ ├── Esthetic_numbers.el │ ├── Ethiopian_multiplication.el │ ├── Euclid-Mullin_sequence.el │ ├── Euclidean_rhythm.el │ ├── Euler's_constant_0.5772....el │ ├── Euler's_identity.el │ ├── Euler's_sum_of_powers_conjecture.el │ ├── Euler_method.el │ ├── Evaluate_binomial_coefficients.el │ ├── Even_numbers_which_cannot_be_expressed_as_the_sum_of_two_twin_primes.el │ ├── Even_or_odd.el │ ├── Events.el │ ├── Evolutionary_algorithm.el │ ├── Exactly_three_adjacent_3_in_lists.el │ ├── Execute_Brain****.el │ ├── Execute_Computer+Zero.el │ ├── Execute_HQ9+.el │ ├── Execute_SNUSP.el │ ├── Exponential_digital_sums.el │ ├── Exponentiation_operator.el │ ├── Exponentiation_order.el │ ├── Exponentiation_with_infix_operators_in_(or_operating_on)_the_base.el │ ├── Extensible_prime_generator.el │ ├── Extra_primes.el │ ├── Extract_file_extension.el │ ├── Extreme_floating_point_values.el │ ├── Extreme_primes.el │ ├── FASTA_format.el │ ├── Factor-perfect_numbers.el │ ├── Factorial.el │ ├── Factorial_primes.el │ ├── Factorions.el │ ├── Factorize_string_into_Lyndon_words.el │ ├── Factors_of_a_Mersenne_number.el │ ├── Factors_of_an_integer.el │ ├── Fairshare_between_two_and_more.el │ ├── Farey_sequence.el │ ├── Fast_Fourier_transform.el │ ├── Faulhaber's_formula.el │ ├── Faulhaber's_triangle.el │ ├── Feigenbaum_constant_calculation.el │ ├── Fermat_pseudoprimes.el │ ├── Fibonacci_n-step_number_sequences.el │ ├── Fibonacci_sequence.el │ ├── Fibonacci_word+fractal.el │ ├── Fibonacci_word.el │ ├── File_extension_is_in_extensions_list.el │ ├── Filter.el │ ├── Find_Chess960_starting_position_identifier.el │ ├── Find_adjacent_primes_which_differ_by_a_square_integer.el │ ├── Find_common_directory_path.el │ ├── Find_first_missing_positive.el │ ├── Find_if_a_point_is_within_a_triangle.el │ ├── Find_limit_of_recursion.el │ ├── Find_minimum_number_of_coins_that_make_a_given_value.el │ ├── Find_palindromic_numbers_in_both_binary_and_ternary_bases.el │ ├── Find_prime_n_such_that_reversed_n_is_also_prime.el │ ├── Find_prime_numbers_of_the_form_n*n*n+2.el │ ├── Find_square_difference.el │ ├── Find_squares_n_where_n+1_is_prime.el │ ├── Find_the_intersection_of_a_line_with_a_plane.el │ ├── Find_the_intersection_of_two_lines.el │ ├── Find_the_last_Sunday_of_each_month.el │ ├── Find_the_missing_permutation.el │ ├── Find_words_which_contain_all_the_vowels.el │ ├── Find_words_which_contain_the_most_consonants.el │ ├── Find_words_which_contains_more_than_3_e_vowels.el │ ├── Find_words_whose_first_and_last_three_letters_are_equal.el │ ├── Find_words_with_alternating_vowels_and_consonants.el │ ├── Finite_state_machine.el │ ├── First_9_prime_Fibonacci_number.el │ ├── First_perfect_square_in_base_n_with_n_unique_digits.el │ ├── First_power_of_2_that_has_leading_decimal_digits_of_12.el │ ├── Five_weekends.el │ ├── Fivenum.el │ ├── FizzBuzz.el │ ├── Flow-control_structures.el │ ├── Floyd's_triangle.el │ ├── Floyd-Warshall_algorithm.el │ ├── Forbidden_numbers.el │ ├── Forest_fire.el │ ├── Fortunate_numbers.el │ ├── Forward_difference.el │ ├── Four_bit_adder.el │ ├── Four_is_magic.el │ ├── Four_sides_of_square.el │ ├── Fractal_tree.el │ ├── Fraction_reduction.el │ ├── Fractran.el │ ├── French_Republican_calendar.el │ ├── Frobenius_numbers.el │ ├── Function_definition.el │ ├── Function_prototype.el │ ├── Fusc_sequence.el │ ├── Galton_box_animation.el │ ├── Gamma_function.el │ ├── Gapful_numbers.el │ ├── Gauss-Jordan_matrix_inversion.el │ ├── Gaussian_elimination.el │ ├── Gaussian_primes.el │ ├── General_FizzBuzz.el │ ├── Generate_Chess960_starting_position.el │ ├── Generate_lower_case_ASCII_alphabet.el │ ├── Generate_random_numbers_without_repeating_a_value.el │ ├── Geohash.el │ ├── Getting_the_number_of_decimal_places.el │ ├── Giuga_numbers.el │ ├── Goldbach's_comet.el │ ├── Golden_ratio+Convergence.el │ ├── Goodstein_Sequence.el │ ├── Gosper's_hack.el │ ├── Gradient_descent.el │ ├── Gray_code.el │ ├── Greatest_common_divisor.el │ ├── Greatest_element_of_a_list.el │ ├── Greatest_prime_dividing_the_n-th_cubefree_number.el │ ├── Greatest_subsequential_sum.el │ ├── Greyscale_bars+Display.el │ ├── Guess_the_number+With_feedback.el │ ├── Guess_the_number+With_feedback_(player).el │ ├── Guess_the_number.el │ ├── Hailstone_sequence.el │ ├── Halt_and_catch_fire.el │ ├── Hamming_numbers.el │ ├── Happy_numbers.el │ ├── Happy_primes.el │ ├── Harmonic_series.el │ ├── Harriss_Spiral.el │ ├── Harshad_or_Niven_series.el │ ├── Hash_from_two_arrays.el │ ├── Haversine_formula.el │ ├── Held–Karp_algorithm.el │ ├── Hello_world+Graphical.el │ ├── Hello_world+Newline_omission.el │ ├── Hello_world+Text.el │ ├── Here_document.el │ ├── Heronian_triangles.el │ ├── Hex_words.el │ ├── Hierholzer's_algorithm.el │ ├── Hilbert_curve.el │ ├── Hofstadter-Conway_$10,000_sequence.el │ ├── Hofstadter_Figure-Figure_sequences.el │ ├── Hofstadter_Q_sequence.el │ ├── Honaker_primes.el │ ├── Honeycombs.el │ ├── Horizontal_sundial_calculations.el │ ├── Horner's_rule_for_polynomial_evaluation.el │ ├── Horse_racing.el │ ├── Hourglass_puzzle.el │ ├── Humble_numbers.el │ ├── Hunt_the_Wumpus.el │ ├── I'm_a_software_engineer,_get_me_out_of_here.el │ ├── IBAN.el │ ├── ISBN13_check_digit.el │ ├── Iccanobif_primes.el │ ├── Identity_matrix.el │ ├── Idiomatically_determine_all_the_characters_that_can_be_used_for_symbols.el │ ├── Idiomatically_determine_all_the_lowercase_and_uppercase_letters.el │ ├── Idoneal_numbers.el │ ├── Image_noise.el │ ├── Implicit_type_conversion.el │ ├── Inconsummate_numbers_in_base_10.el │ ├── Increasing_gaps_between_consecutive_Niven_numbers.el │ ├── Increment_a_numerical_string.el │ ├── Infinity.el │ ├── Input+Output_for_lines_of_text.el │ ├── Input+Output_for_pairs_of_numbers.el │ ├── Input_loop.el │ ├── Integer_comparison.el │ ├── Integer_roots.el │ ├── Integer_sequence.el │ ├── Inventory_sequence.el │ ├── Isograms_and_heterograms.el │ ├── Isqrt_(integer_square_root)_of_X.el │ ├── Iterated_digits_squaring.el │ ├── Jaccard_index.el │ ├── Jacobi_symbol.el │ ├── Jacobsthal_numbers.el │ ├── Jaro-Winkler_distance.el │ ├── Jaro_similarity.el │ ├── Jewels_and_stones.el │ ├── Jordan-Pólya_numbers.el │ ├── JortSort.el │ ├── Josephus_problem.el │ ├── Juggler_sequence.el │ ├── Julia_set.el │ ├── K-means++_clustering.el │ ├── Kaprekar_numbers.el │ ├── Kempner_numbers.el │ ├── Kernighans_large_earthquake_problem.el │ ├── Keyboard_input+Keypress_check.el │ ├── Keyboard_input+Obtain_a_Y_or_N_response.el │ ├── Klarner-Rado_sequence.el │ ├── Knapsack_problem+0-1.el │ ├── Knapsack_problem+Bounded.el │ ├── Knapsack_problem+Continuous.el │ ├── Knapsack_problem+Unbounded.el │ ├── Knight's_tour.el │ ├── Knuth-Morris-Pratt_string_search.el │ ├── Knuth_shuffle.el │ ├── Koch_curve.el │ ├── Kolakoski_sequence.el │ ├── Kosaraju.el │ ├── Kronecker_product.el │ ├── Kronecker_product_based_fractals.el │ ├── L-system.el │ ├── LU_decomposition.el │ ├── Lagrange_Interpolation.el │ ├── Lah_numbers.el │ ├── Langton's_ant.el │ ├── Largest_difference_between_adjacent_primes.el │ ├── Largest_five_adjacent_number.el │ ├── Largest_int_from_concatenated_ints.el │ ├── Largest_number_divisible_by_its_digits.el │ ├── Largest_palindrome_product.el │ ├── Largest_prime_factor.el │ ├── Largest_product_in_a_grid.el │ ├── Largest_proper_divisor_of_n.el │ ├── Last_Friday_of_each_month.el │ ├── Last_letter-first_letter.el │ ├── Last_list_item.el │ ├── Law_of_cosines_-_triples.el │ ├── Leap_year.el │ ├── Least_common_multiple.el │ ├── Legendre_prime_counting_function.el │ ├── Lempel–Ziv_complexity.el │ ├── Length_of_an_arc_between_two_angles.el │ ├── Leonardo_numbers.el │ ├── Letter_frequency.el │ ├── Levenshtein_distance+Alignment.el │ ├── Levenshtein_distance.el │ ├── Linear_congruential_generator.el │ ├── List_rooted_trees.el │ ├── Literals+Floating_point.el │ ├── Literals+Integer.el │ ├── Literals+String.el │ ├── Logical_operations.el │ ├── Logistic_curve_fitting_in_epidemiology.el │ ├── Long_literals,_with_continuations.el │ ├── Long_multiplication.el │ ├── Long_primes.el │ ├── Long_stairs.el │ ├── Long_year.el │ ├── Longest_common_prefix.el │ ├── Longest_common_subsequence.el │ ├── Longest_common_substring.el │ ├── Longest_common_suffix.el │ ├── Longest_increasing_subsequence.el │ ├── Longest_palindromic_substrings.el │ ├── Longest_substrings_without_repeating_characters.el │ ├── Look-and-say_sequence.el │ ├── Loop_over_multiple_arrays_simultaneously.el │ ├── Loops+Break.el │ ├── Loops+Do-while.el │ ├── Loops+Downward_for.el │ ├── Loops+For.el │ ├── Loops+For_with_a_specified_step.el │ ├── Loops+Foreach.el │ ├── Loops+Increment_loop_index_within_loop_body.el │ ├── Loops+Infinite.el │ ├── Loops+N_plus_one_half.el │ ├── Loops+Nested.el │ ├── Loops+While.el │ ├── Loops+Wrong_ranges.el │ ├── Lucas-Lehmer_test.el │ ├── Ludic_numbers.el │ ├── Luhn_test_of_credit_card_numbers.el │ ├── Lunar_arithmetic.el │ ├── Lyndon_word.el │ ├── MD5+Implementation.el │ ├── MD5.el │ ├── Mad_Libs.el │ ├── Magic_8-ball.el │ ├── Magic_constant.el │ ├── Magic_numbers.el │ ├── Magic_squares_of_doubly_even_order.el │ ├── Magic_squares_of_odd_order.el │ ├── Magic_squares_of_singly_even_order.el │ ├── Magnanimous_numbers.el │ ├── Mandelbrot_set.el │ ├── Map_range.el │ ├── Marching_squares.el │ ├── Mastermind.el │ ├── Matrix-exponentiation_operator.el │ ├── Matrix_chain_multiplication.el │ ├── Matrix_multiplication.el │ ├── Matrix_transposition.el │ ├── Matrix_with_two_diagonals.el │ ├── Maximum_difference_between_adjacent_elements_of_list.el │ ├── Maximum_triangle_path_sum.el │ ├── Mayan_numerals.el │ ├── Maze_generation.el │ ├── Maze_solving.el │ ├── McNuggets_problem.el │ ├── Meissel–Mertens_constant.el │ ├── Merge_and_aggregate_datasets.el │ ├── Mersenne_primes.el │ ├── Mertens_function.el │ ├── Mian-Chowla_sequence.el │ ├── Middle_three_digits.el │ ├── Mind_boggling_card_trick.el │ ├── Minesweeper_game.el │ ├── Minimum_multiple_of_m_where_digital_sum_equals_m.el │ ├── Minimum_number_of_cells_after,_before,_above_and_below_NxN_squares.el │ ├── Minimum_numbers_of_three_lists.el │ ├── Minimum_primes.el │ ├── Minkowski_question-mark_function.el │ ├── Modified_random_distribution.el │ ├── Modular_inverse.el │ ├── Monte_Carlo_methods.el │ ├── Monty_Hall_problem.el │ ├── Morse_code.el │ ├── Mosaic_matrix.el │ ├── Moser's_circle_problem.el │ ├── Motzkin_numbers.el │ ├── Mouse_position.el │ ├── Move-to-front_algorithm.el │ ├── Multi-base_primes.el │ ├── Multifactorial.el │ ├── Multiplication_tables.el │ ├── Multiplicatively_perfect_numbers.el │ ├── Multisplit.el │ ├── Munchausen_numbers.el │ ├── Munching_squares.el │ ├── Musical_scale.el │ ├── Mutual_recursion.el │ ├── Möbius_function.el │ ├── N'th.el │ ├── N-grams.el │ ├── N-queens_problem.el │ ├── Names_to_numbers.el │ ├── Narcissistic_decimal_number.el │ ├── Negative_base_numbers.el │ ├── Neighbour_primes.el │ ├── Nested_function.el │ ├── Next_highest_int_from_digits.el │ ├── Next_special_primes.el │ ├── Nice_primes.el │ ├── Nim_game.el │ ├── Nimber_arithmetic.el │ ├── No_prime_sums.el │ ├── Non-continuous_subsequences.el │ ├── Non-decimal_radices+Convert.el │ ├── Non-decimal_radices+Input.el │ ├── Nonoblock.el │ ├── Nth_root.el │ ├── Number_names.el │ ├── Number_reversal_game.el │ ├── Numbers_divisible_by_their_individual_digits,_but_not_by_the_product_of_their_digits..el │ ├── Numbers_in_base-16_representation_that_cannot_be_written_with_decimal_digits.el │ ├── Numbers_in_base_10_that_are_palindromic_in_bases_2,_4,_and_16.el │ ├── Numbers_k_whose_divisor_sum_is_equal_to_the_divisor_sum_of_k_+_1.el │ ├── Numbers_which_are_not_the_sum_of_distinct_squares.el │ ├── Numbers_which_are_the_cube_roots_of_the_product_of_their_proper_divisors.el │ ├── Numbers_whose_binary_and_ternary_digit_sums_are_prime.el │ ├── Numbers_whose_count_of_divisors_is_prime.el │ ├── Numbers_with_equal_rises_and_falls.el │ ├── Numbers_with_prime_digits_whose_sum_is_13.el │ ├── Numbers_with_same_digit_set_in_base_10_and_base_16.el │ ├── Numerical_integration+Adaptive_Simpson's_method.el │ ├── Numerical_integration+Romberg_integration.el │ ├── O'Halloran_numbers.el │ ├── Odd_and_square_numbers.el │ ├── Odd_squarefree_semiprimes.el │ ├── Odd_word_problem.el │ ├── Odd_words.el │ ├── Old_Russian_measure_of_length.el │ ├── Old_lady_swallowed_a_fly.el │ ├── One-dimensional_cellular_automata.el │ ├── One-two_primes.el │ ├── One_of_n_lines_in_a_file.el │ ├── OpenWebNet_password.el │ ├── Orbital_elements.el │ ├── Order_by_pair_comparisons.el │ ├── Order_disjoint_list_items.el │ ├── Order_two_numerical_lists.el │ ├── Ordered_words.el │ ├── Ormiston_pairs.el │ ├── Ormiston_triples.el │ ├── Own_digits_power_sum.el │ ├── Padovan_n-step_number_sequences.el │ ├── Padovan_sequence.el │ ├── Pairs_with_common_factors.el │ ├── Palindrome_dates.el │ ├── Palindrome_detection.el │ ├── Palindromic_primes.el │ ├── Palindromic_primes_in_base_16.el │ ├── Pan_base_non-primes.el │ ├── Pandigital_prime.el │ ├── Pangram_checker.el │ ├── Parsing+RPN_calculator_algorithm.el │ ├── Particle_fountain.el │ ├── Partition_an_integer_x_into_n_primes.el │ ├── Partition_function_P.el │ ├── Pascal's_triangle+Puzzle.el │ ├── Pascal's_triangle.el │ ├── Pascal_matrix_generation.el │ ├── Password_generator.el │ ├── Pathological_floating_point_problems.el │ ├── Peano_curve.el │ ├── Penholodigital_squares.el │ ├── Penney's_game.el │ ├── Penrose_tiling.el │ ├── Pentagram.el │ ├── Perceptron.el │ ├── Percolation+Mean_cluster_density.el │ ├── Percolation+Mean_run_density.el │ ├── Percolation+Site_percolation.el │ ├── Perfect_numbers.el │ ├── Perfect_shuffle.el │ ├── Perfect_totient_numbers.el │ ├── Periodic_table.el │ ├── Peripheral_drift_illusion.el │ ├── Perlin_noise.el │ ├── Permutation_test.el │ ├── Permutations+Derangements.el │ ├── Permutations+Rank_of_a_permutation.el │ ├── Permutations.el │ ├── Permutations_by_swapping.el │ ├── Permutations_with_repetitions.el │ ├── Permutations_with_some_identical_elements.el │ ├── Permuted_multiples.el │ ├── Pernicious_numbers.el │ ├── Pfaffian_and_hfaffian.el │ ├── Phrase_reversals.el │ ├── Pick_random_element.el │ ├── Pierpont_primes.el │ ├── Pig_the_dice_game.el │ ├── Pinstripe+Display.el │ ├── Piprimes.el │ ├── Pisano_period.el │ ├── Plasma_effect.el │ ├── Playfair_cipher.el │ ├── Playing_cards.el │ ├── Plot_coordinate_pairs.el │ ├── Poker_hand_analyser.el │ ├── Polynomial_derivative.el │ ├── Polynomial_long_division.el │ ├── Polynomial_regression.el │ ├── Polyspiral.el │ ├── Population_count.el │ ├── Positive_decimal_integers_with_the_digit_1_occurring_exactly_twice.el │ ├── Powerful_numbers.el │ ├── Practical_numbers.el │ ├── Price_fraction.el │ ├── Price_list_behind_API.el │ ├── Primality_by_Wilson's_theorem.el │ ├── Primality_by_trial_division.el │ ├── Prime_conspiracy.el │ ├── Prime_decomposition.el │ ├── Prime_groups,_counting.el │ ├── Prime_groups.el │ ├── Prime_numbers_of_measurement.el │ ├── Prime_numbers_p_for_which_the_sum_of_primes_less_than_or_equal_to_p_is_prime.el │ ├── Prime_numbers_which_contain_123.el │ ├── Prime_numbers_whose_neighboring_pairs_are_tetraprimes.el │ ├── Prime_triangle.el │ ├── Prime_triplets.el │ ├── Prime_words.el │ ├── Primes:_n*2^m+1.el │ ├── Primes_-_allocate_descendants_to_their_ancestors.el │ ├── Primes_which_contain_only_one_odd_digit.el │ ├── Primes_whose_first_and_last_number_is_3.el │ ├── Primes_whose_sum_of_digits_is_25.el │ ├── Primes_with_digits_in_nondecreasing_order.el │ ├── Primorial_numbers.el │ ├── Probabilistic_choice.el │ ├── Problem_of_Apollonius.el │ ├── Product_of_divisors.el │ ├── Product_of_min_and_max_prime_factors.el │ ├── Proper_divisors.el │ ├── Pseudo-random_numbers+Combined_recursive_generator_MRG32k3a.el │ ├── Pseudo-random_numbers+Middle-square_method.el │ ├── Pythagoras_tree.el │ ├── Pythagorean_quadruples.el │ ├── Pythagorean_triples.el │ ├── Quadrat_special_primes.el │ ├── Quaternion_type.el │ ├── Queue+Definition.el │ ├── Queue+Usage.el │ ├── Quickselect_algorithm.el │ ├── Quine.el │ ├── Quine–McCluskey_algorithm.el │ ├── Quoting_constructs.el │ ├── RPG_attributes_generator.el │ ├── Radical_of_an_integer.el │ ├── Rainbow.el │ ├── Ramanujan_primes+twins.el │ ├── Ramanujan_primes.el │ ├── Ramer-Douglas-Peucker_line_simplification.el │ ├── Random_Latin_squares.el │ ├── Random_numbers.el │ ├── Range_consolidation.el │ ├── Range_expansion.el │ ├── Range_extraction.el │ ├── Range_modifications.el │ ├── Ranking_methods.el │ ├── Rare_numbers.el │ ├── Raster_bars.el │ ├── Rate_counter.el │ ├── Read_a_specific_line_from_a_file.el │ ├── Real_constants_and_functions.el │ ├── Recaman's_sequence.el │ ├── Reduced_row_echelon_form.el │ ├── Remove_duplicate_elements.el │ ├── Remove_vowels_from_a_string.el │ ├── Rep-string.el │ ├── Repeat_a_string.el │ ├── Resistance_calculator.el │ ├── Resistance_network_calculator.el │ ├── Resistor_mesh.el │ ├── Return_multiple_values.el │ ├── Reverse_a_string.el │ ├── Reverse_the_gender_of_a_string.el │ ├── Reverse_the_order_of_lines_in_a_text_file_while_preserving_the_contents_of_each_line.el │ ├── Reverse_words_in_a_string.el │ ├── Rhonda_numbers.el │ ├── Riordan_numbers.el │ ├── Rock-paper-scissors.el │ ├── Rodrigues’_rotation_formula.el │ ├── Roman_numerals+Decode.el │ ├── Roman_numerals+Encode.el │ ├── Roots_of_a_function.el │ ├── Roots_of_unity.el │ ├── Rot-13.el │ ├── Round-robin_tournament_schedule.el │ ├── Run-length_encoding.el │ ├── Runge-Kutta_method.el │ ├── Ruth-Aaron_numbers.el │ ├── SEDOLs.el │ ├── SEND_+_MORE_=_MONEY.el │ ├── Safe_and_Sophie_Germain_primes.el │ ├── Safe_primes_and_unsafe_primes.el │ ├── Sailors,_coconuts_and_a_monkey_problem.el │ ├── Sattolo_cycle.el │ ├── Scope+Function_names_and_labels.el │ ├── Search_a_list.el │ ├── Selectively_replace_multiple_instances_of_a_character_within_a_string.el │ ├── Self-contained_numbers.el │ ├── Self-describing_numbers.el │ ├── Self_numbers.el │ ├── Semiprime.el │ ├── Semordnilap.el │ ├── Sequence:_smallest_number_greater_than_previous_term_with_exactly_n_divisors.el │ ├── Sequence:_smallest_number_with_exactly_n_divisors.el │ ├── Sequence_of_non-squares.el │ ├── Sequence_of_primes_by_trial_division.el │ ├── Set,_the_card_game.el │ ├── Set_puzzle.el │ ├── Set_right-adjacent_bits.el │ ├── Seven-sided_dice_from_five-sided_dice.el │ ├── Sexy_primes.el │ ├── Shape-Machine.el │ ├── Shift_list_elements_to_left_by_3.el │ ├── Shoelace_formula_for_polygonal_area.el │ ├── Short-circuit_evaluation.el │ ├── Shortest_common_supersequence.el │ ├── Show_ASCII_table.el │ ├── Show_the_(decimal)_value_of_a_number_of_1s_appended_with_a_3,_then_squared.el │ ├── Show_the_epoch.el │ ├── Sierpinski_arrowhead_curve.el │ ├── Sierpinski_carpet.el │ ├── Sierpinski_curve.el │ ├── Sierpinski_pentagon.el │ ├── Sierpinski_square_curve.el │ ├── Sierpinski_triangle+Graphical.el │ ├── Sierpinski_triangle.el │ ├── Sieve_of_Eratosthenes.el │ ├── Sieve_of_Pritchard.el │ ├── Sign_of_an_integer_(signum).el │ ├── Simple_turtle_graphics.el │ ├── Sine_wave.el │ ├── Sisyphus_sequence.el │ ├── Sleep.el │ ├── Sleeping_Beauty_problem.el │ ├── Smallest_enclosing_circle_problem.el │ ├── Smallest_multiple.el │ ├── Smallest_numbers.el │ ├── Smallest_power_of_6_whose_decimal_expansion_contains_n.el │ ├── Smallest_square_that_begins_with_n.el │ ├── Smarandache-Wellin_primes.el │ ├── Smarandache_prime-digital_sequence.el │ ├── Smith_numbers.el │ ├── Snake.el │ ├── Soloway's_recurring_rainfall.el │ ├── Solve_a_Hidato_puzzle.el │ ├── Solve_a_Holy_Knight's_tour.el │ ├── Solve_a_Hopido_puzzle.el │ ├── Solve_a_Numbrix_puzzle.el │ ├── Solve_equations_with_substitution_method.el │ ├── Solve_hanging_lantern_problem.el │ ├── Solve_the_no_connection_puzzle.el │ ├── Solve_triangle_solitaire_puzzle.el │ ├── Sort_a_list_of_object_identifiers.el │ ├── Sort_an_integer_array.el │ ├── Sort_an_outline_at_every_level.el │ ├── Sort_disjoint_sublist.el │ ├── Sort_numbers_lexicographically.el │ ├── Sort_primes_from_list_to_a_list.el │ ├── Sort_the_letters_of_string_in_alphabetical_order.el │ ├── Sort_three_variables.el │ ├── Sorting_Algorithms+Circle_Sort.el │ ├── Sorting_algorithms+Bead_sort.el │ ├── Sorting_algorithms+Bogosort.el │ ├── Sorting_algorithms+Bubble_sort.el │ ├── Sorting_algorithms+Cocktail_sort.el │ ├── Sorting_algorithms+Cocktail_sort_with_shifting_bounds.el │ ├── Sorting_algorithms+Comb_sort.el │ ├── Sorting_algorithms+Counting_sort.el │ ├── Sorting_algorithms+Cycle_sort.el │ ├── Sorting_algorithms+Gnome_sort.el │ ├── Sorting_algorithms+Heapsort.el │ ├── Sorting_algorithms+Insertion_sort.el │ ├── Sorting_algorithms+Merge_sort.el │ ├── Sorting_algorithms+Pancake_sort.el │ ├── Sorting_algorithms+Patience_sort.el │ ├── Sorting_algorithms+Permutation_sort.el │ ├── Sorting_algorithms+Quicksort.el │ ├── Sorting_algorithms+Radix_sort.el │ ├── Sorting_algorithms+Selection_sort.el │ ├── Sorting_algorithms+Shell_sort.el │ ├── Sorting_algorithms+Stooge_sort.el │ ├── Sorting_algorithms+Strand_sort.el │ ├── Soundex.el │ ├── Sparkline_in_unicode.el │ ├── Special_divisors.el │ ├── Special_factorials.el │ ├── Special_neighbor_primes.el │ ├── Special_pythagorean_triplet.el │ ├── Specific_characters.el │ ├── Spelling_of_ordinal_numbers.el │ ├── Sphenic_numbers.el │ ├── Spinning_rod_animation+Text.el │ ├── Spiral_matrix.el │ ├── Split_a_character_string_based_on_change_of_character.el │ ├── Square-free_integers.el │ ├── Square_but_not_cube.el │ ├── Square_form_factorization.el │ ├── Square_root_by_hand.el │ ├── Stable_marriage_problem.el │ ├── Stack.el │ ├── Stair-climbing_puzzle.el │ ├── Start_from_a_main_routine.el │ ├── Statistics+Basic.el │ ├── Statistics+Normal_distribution.el │ ├── Steady_squares.el │ ├── Steffensen's_method.el │ ├── Stem-and-leaf_plot.el │ ├── Stern-Brocot_sequence.el │ ├── Stirling_numbers_of_the_first_kind.el │ ├── Stirling_numbers_of_the_second_kind.el │ ├── Straddling_checkerboard.el │ ├── Strange_numbers.el │ ├── Strange_plus_numbers.el │ ├── Strange_unique_prime_triplets.el │ ├── String_append.el │ ├── String_case.el │ ├── String_comparison.el │ ├── String_concatenation.el │ ├── String_length.el │ ├── String_matching.el │ ├── String_prepend.el │ ├── Strip_a_set_of_characters_from_a_string.el │ ├── Strip_block_comments.el │ ├── Strip_comments_from_a_string.el │ ├── Strip_control_codes_and_extended_characters_from_a_string.el │ ├── Strip_whitespace_from_a_string+Top_and_tail.el │ ├── Strong_and_weak_primes.el │ ├── Sturmian_word.el │ ├── Sub-unit_squares.el │ ├── Subleq.el │ ├── Subset_sum_problem.el │ ├── Substitution_cipher.el │ ├── Substring+Top_and_tail.el │ ├── Substring.el │ ├── Substring_primes.el │ ├── Subtractive_generator.el │ ├── Successive_prime_differences.el │ ├── Sudan_function.el │ ├── Sudoku.el │ ├── Sum_and_product_of_an_array.el │ ├── Sum_and_product_puzzle.el │ ├── Sum_digits_of_an_integer.el │ ├── Sum_multiples_of_3_and_5.el │ ├── Sum_of_a_series.el │ ├── Sum_of_divisors.el │ ├── Sum_of_elements_below_main_diagonal_of_matrix.el │ ├── Sum_of_first_n_cubes.el │ ├── Sum_of_primes_in_odd_positions_is_prime.el │ ├── Sum_of_square_and_cube_digits_of_an_integer_are_primes.el │ ├── Sum_of_squares.el │ ├── Sum_of_the_digits_of_n_is_substring_of_n.el │ ├── Sum_of_two_adjacent_numbers_are_primes.el │ ├── Sum_to_100.el │ ├── Summarize_primes.el │ ├── Summation_of_primes.el │ ├── Sunflower_fractal.el │ ├── Super-Poulet_numbers.el │ ├── Super-d_numbers.el │ ├── Superellipse.el │ ├── Superpermutation_minimisation.el │ ├── Sutherland-Hodgman_polygon_clipping.el │ ├── Sylvester's_sequence.el │ ├── Symmetric_difference.el │ ├── System_time.el │ ├── Tau_function.el │ ├── Tau_number.el │ ├── Taxicab_numbers.el │ ├── Teacup_rim_text.el │ ├── Temperature_conversion.el │ ├── Ternary_logic.el │ ├── Test_integerness.el │ ├── Text_between.el │ ├── The_Name_Game.el │ ├── The_Twelve_Days_of_Christmas.el │ ├── The_sieve_of_Sundaram.el │ ├── Three_word_location.el │ ├── Thue-Morse.el │ ├── Tic-tac-toe.el │ ├── Time_a_function.el │ ├── Tokenize_a_string.el │ ├── Tokenize_a_string_with_escaping.el │ ├── Top_rank_per_group.el │ ├── Topological_sort.el │ ├── Topswops.el │ ├── Total_circles_area.el │ ├── Totient_function.el │ ├── Towers_of_Hanoi.el │ ├── Trabb_Pardo–Knuth_algorithm.el │ ├── Tree_traversal.el │ ├── Triangular_numbers.el │ ├── Trigonometric_functions.el │ ├── Triplet_of_three_numbers.el │ ├── Truncatable_primes.el │ ├── Twelve_statements.el │ ├── Twin_primes.el │ ├── Twin_primes_whose_sum_is_square_number.el │ ├── Two_bullet_roulette.el │ ├── Two_identical_strings.el │ ├── Two_sum.el │ ├── UPC.el │ ├── URL_decoding.el │ ├── URL_encoding.el │ ├── UTF-8_encode_and_decode.el │ ├── Ulam_numbers.el │ ├── Ulam_spiral_(for_primes).el │ ├── Unbias_a_random_generator.el │ ├── Undulating_numbers.el │ ├── Unescape_a_string.el │ ├── Unicode_strings.el │ ├── Unique_characters.el │ ├── Unique_characters_in_each_string.el │ ├── Universal_Turing_machine.el │ ├── Unprimeable_numbers.el │ ├── Useless_instructions.el │ ├── User_input+Text.el │ ├── Validate_International_Securities_Identification_Number.el │ ├── Vampire_number.el │ ├── Van_Eck_sequence.el │ ├── Van_der_Corput_sequence.el │ ├── Variables.el │ ├── Vector.el │ ├── Vector_products.el │ ├── Verhoeff_algorithm.el │ ├── Verify_distribution_uniformity+Naive.el │ ├── Vibrating_rectangles.el │ ├── Vigenère_cipher+Cryptanalysis.el │ ├── Vigenère_cipher.el │ ├── Vile_and_Dopey_numbers.el │ ├── Vogel's_approximation_method.el │ ├── Voronoi_diagram.el │ ├── Wagstaff_primes.el │ ├── Walsh_matrix.el │ ├── War_card_game.el │ ├── Wasteful,_equidigital_and_frugal_numbers.el │ ├── Water_collected_between_towers.el │ ├── Weird_numbers.el │ ├── Wieferich_primes.el │ ├── Wilson_primes_of_order_n.el │ ├── Wireworld.el │ ├── Wolstenholme_numbers.el │ ├── Word_break_problem.el │ ├── Word_ladder.el │ ├── Word_wheel.el │ ├── Word_wrap.el │ ├── Words_containing_"the"_substring.el │ ├── Words_from_neighbour_ones.el │ ├── World_Cup_group_stage.el │ ├── Worthwhile_task_shaving.el │ ├── Xiaolin_Wu's_line_algorithm.el │ ├── Yellowstone_sequence.el │ ├── Yin_and_yang.el │ ├── Zeckendorf_number_representation.el │ ├── Zero_to_the_zero_power.el │ ├── Zig-zag_matrix.el │ ├── Zsigmondy_numbers.el │ ├── Zumkeller_numbers.el │ ├── _get_date │ ├── _gtasks.sh │ ├── _rosget.awk │ ├── diff.sh │ ├── g │ ├── get.sh │ ├── mk │ ├── rosmk.sh │ ├── tasks.py │ ├── test.out │ ├── test.sh │ ├── testall.sh │ ├── vers │ │ └── Long_multiplication_STRING.el │ ├── x.el │ └── xget.sh ├── sky │ ├── icon.el │ ├── icon.png │ ├── makefile │ ├── mk │ ├── mk1 │ └── sky.el ├── test_aoc ├── test_aocall └── work │ ├── bnwork.el │ ├── deploy.yml │ ├── fibon.el │ ├── fibon.py │ ├── root_nbasic.html │ └── stack.el ├── mk ├── mzip ├── native ├── kbgr.c ├── kbgr_nosdl.c ├── readme.md ├── run ├── runc ├── rundbg ├── test.el ├── testg.el └── testkbgr ├── progs ├── 15-puzzle.kab ├── 1st-math-trainer.kab ├── 1x1-trainer.kab ├── barnsley-fern.kab ├── bouncing-balls.kab ├── clock.kab ├── combat-balls.kab ├── eyes-draw.kab ├── fractal-tree.kab ├── game-of-life.kab ├── gravity.kab ├── ice-cream.kab ├── learning-clock.kab ├── letter-memory.kab ├── mandelbrot.kab ├── mastermind.kab ├── math-trainer.kab ├── mine-sweeper.kab ├── monster-maze.kab ├── paddle.kab ├── paint.kab ├── particles.kab ├── pendulum.kab ├── piano.kab ├── planets.kab ├── png │ ├── 15-puzzle.png │ ├── 1st-math-trainer.png │ ├── 1x1-trainer.png │ ├── 2048.png │ ├── catch-the-ball.png │ ├── easyide.png │ ├── ice-cream.png │ ├── ide.png │ ├── learning-clock.png │ ├── letter-memory.png │ ├── mastermind.png │ ├── math-trainer.png │ ├── mine-sweeper.png │ ├── monster-maze.png │ ├── paint.png │ ├── piano.png │ ├── reaction-test.png │ ├── roman-numbers.png │ ├── size200 │ ├── snake.png │ └── tictactoe.png ├── reaction-test.kab ├── roman-numbers.kab ├── smpls │ ├── 100-prisoners.kab │ ├── 21.kab │ ├── _brownian-tree.kab │ ├── _chaos-game.kab │ ├── _color_bars.kab │ ├── _dragon-curve.kab │ ├── _fractal-tree.kab │ ├── _greyscale.kab │ ├── _koch-curve.kab │ ├── _langtons-ant.kab │ ├── _pentagram.kab │ ├── _plot_coord.kab │ ├── _pythagoras-tree.kab │ ├── _r_maze.kab │ ├── _r_maze0.kab │ ├── _rotating-cube.kab │ ├── _sierpinski.kab │ ├── _vibrating-rectangles.kab │ ├── ast.el │ ├── bulls_cows.kab │ ├── calc_e.el │ ├── catch-the-ball.kab │ ├── cheby.kab │ ├── chin_rt.el │ ├── chowla_n.kab │ ├── circle_anim.el │ ├── coord.kab │ ├── count-the-coins.el │ ├── demo.kab │ ├── etc.el │ ├── euler.kab │ ├── eulersum.el │ ├── eyes.el │ ├── features.el │ ├── fib.el │ ├── forest-fire.kab │ ├── ftree2.kab │ ├── hangman.kab │ ├── hangman.png │ ├── horiz_sun.el │ ├── house.el │ ├── julia-set.kab │ ├── knapsack.kab │ ├── longmult.el │ ├── mastermind_w.kab │ ├── mcarlo.kab │ ├── md5.el │ ├── median.kab │ ├── mtable.kab │ ├── nqueens.kab │ ├── old │ │ └── peg_solitaire.el │ ├── progf.el │ ├── repl.sh │ ├── roman.el │ ├── rosetta.kab │ ├── sierp_carp.el │ ├── solitare.el │ ├── solitare_triangle.el │ ├── sortcmp.el │ ├── spiral_anim.kab │ ├── sudoko.el │ ├── todo │ │ ├── balls2.kab │ │ ├── coin-flip.kab │ │ ├── coin_test.kab │ │ ├── dice_test.kab │ │ └── eulersum_fast.el │ ├── two_bullet.el │ └── urls.txt ├── snake.kab ├── spiral.kab ├── thomas-attractor.kab └── tictactoe.kab ├── readme.md ├── run ├── easy_code.js ├── icon.el ├── icon.png ├── icon.svg ├── makefile ├── mfst.json ├── mk ├── mk_games ├── mk_games_gz ├── run.html ├── run.js └── runapps.txt └── vers.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.el linguist-detectable=false 2 | 3 | -------------------------------------------------------------------------------- /apps/attractors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/attractors.html -------------------------------------------------------------------------------- /apps/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/demo.html -------------------------------------------------------------------------------- /apps/easy_tut2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/easy_tut2.js -------------------------------------------------------------------------------- /apps/easy_tut2x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/easy_tut2x.js -------------------------------------------------------------------------------- /apps/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/makefile -------------------------------------------------------------------------------- /apps/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/mk -------------------------------------------------------------------------------- /apps/mk_aoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/mk_aoc -------------------------------------------------------------------------------- /apps/mk_demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/mk_demo -------------------------------------------------------------------------------- /apps/mk_show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/mk_show -------------------------------------------------------------------------------- /apps/progfun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/progfun.html -------------------------------------------------------------------------------- /apps/reaction_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/reaction_test.html -------------------------------------------------------------------------------- /apps/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/show.html -------------------------------------------------------------------------------- /apps/showaoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/showaoc.html -------------------------------------------------------------------------------- /apps/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/test.html -------------------------------------------------------------------------------- /apps/tr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/tr.py -------------------------------------------------------------------------------- /apps/tut_blackj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/tut_blackj.html -------------------------------------------------------------------------------- /apps/tut_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/tut_cipher.html -------------------------------------------------------------------------------- /apps/tut_mcarlo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/tut_mcarlo.html -------------------------------------------------------------------------------- /apps/tut_sorting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/tut_sorting.html -------------------------------------------------------------------------------- /apps/w.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/apps/w.txt -------------------------------------------------------------------------------- /main/easy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/easy.js -------------------------------------------------------------------------------- /main/easy_ide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/easy_ide.js -------------------------------------------------------------------------------- /main/icon.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/icon.kab -------------------------------------------------------------------------------- /main/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/icon.png -------------------------------------------------------------------------------- /main/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/icon.svg -------------------------------------------------------------------------------- /main/ide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/ide.html -------------------------------------------------------------------------------- /main/kbas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/kbas.c -------------------------------------------------------------------------------- /main/kbasw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/kbasw.h -------------------------------------------------------------------------------- /main/kbasw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/kbasw.js -------------------------------------------------------------------------------- /main/kfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/kfunc.h -------------------------------------------------------------------------------- /main/klex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/klex.h -------------------------------------------------------------------------------- /main/klib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/klib.h -------------------------------------------------------------------------------- /main/kparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/kparse.h -------------------------------------------------------------------------------- /main/kwasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/kwasm.h -------------------------------------------------------------------------------- /main/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/makefile -------------------------------------------------------------------------------- /main/mfst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/mfst.json -------------------------------------------------------------------------------- /main/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/qrcode.js -------------------------------------------------------------------------------- /main/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/sw.js -------------------------------------------------------------------------------- /main/swreg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/swreg.js -------------------------------------------------------------------------------- /main/tut_docu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/tut_docu.js -------------------------------------------------------------------------------- /main/tut_func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/tut_func.js -------------------------------------------------------------------------------- /main/tut_game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/tut_game.js -------------------------------------------------------------------------------- /main/tut_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/tut_id.js -------------------------------------------------------------------------------- /main/tut_learn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/tut_learn.js -------------------------------------------------------------------------------- /main/tut_learnx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/tut_learnx.js -------------------------------------------------------------------------------- /main/tut_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/main/tut_test.html -------------------------------------------------------------------------------- /misc/19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/19.html -------------------------------------------------------------------------------- /misc/aoc15/1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/1.el -------------------------------------------------------------------------------- /misc/aoc15/10.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/10.el -------------------------------------------------------------------------------- /misc/aoc15/11.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/11.el -------------------------------------------------------------------------------- /misc/aoc15/12.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/12.el -------------------------------------------------------------------------------- /misc/aoc15/13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/13.el -------------------------------------------------------------------------------- /misc/aoc15/14.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/14.el -------------------------------------------------------------------------------- /misc/aoc15/15.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/15.el -------------------------------------------------------------------------------- /misc/aoc15/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/16.el -------------------------------------------------------------------------------- /misc/aoc15/17.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/17.el -------------------------------------------------------------------------------- /misc/aoc15/18.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/18.el -------------------------------------------------------------------------------- /misc/aoc15/19.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/19.el -------------------------------------------------------------------------------- /misc/aoc15/2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/2.el -------------------------------------------------------------------------------- /misc/aoc15/20.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/20.el -------------------------------------------------------------------------------- /misc/aoc15/21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/21.el -------------------------------------------------------------------------------- /misc/aoc15/22.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/22.el -------------------------------------------------------------------------------- /misc/aoc15/23.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/23.el -------------------------------------------------------------------------------- /misc/aoc15/24.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/24.el -------------------------------------------------------------------------------- /misc/aoc15/25.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/25.el -------------------------------------------------------------------------------- /misc/aoc15/3.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/3.el -------------------------------------------------------------------------------- /misc/aoc15/4.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/4.el -------------------------------------------------------------------------------- /misc/aoc15/5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/5.el -------------------------------------------------------------------------------- /misc/aoc15/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/6.el -------------------------------------------------------------------------------- /misc/aoc15/7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/7.el -------------------------------------------------------------------------------- /misc/aoc15/8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/8.el -------------------------------------------------------------------------------- /misc/aoc15/9.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/9.el -------------------------------------------------------------------------------- /misc/aoc15/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc15/sol.txt -------------------------------------------------------------------------------- /misc/aoc16/1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/1.el -------------------------------------------------------------------------------- /misc/aoc16/10.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/10.el -------------------------------------------------------------------------------- /misc/aoc16/11.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/11.el -------------------------------------------------------------------------------- /misc/aoc16/12.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/12.el -------------------------------------------------------------------------------- /misc/aoc16/13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/13.el -------------------------------------------------------------------------------- /misc/aoc16/14.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/14.el -------------------------------------------------------------------------------- /misc/aoc16/15.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/15.el -------------------------------------------------------------------------------- /misc/aoc16/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/16.el -------------------------------------------------------------------------------- /misc/aoc16/17.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/17.el -------------------------------------------------------------------------------- /misc/aoc16/18.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/18.el -------------------------------------------------------------------------------- /misc/aoc16/19.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/19.el -------------------------------------------------------------------------------- /misc/aoc16/2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/2.el -------------------------------------------------------------------------------- /misc/aoc16/20.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/20.el -------------------------------------------------------------------------------- /misc/aoc16/21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/21.el -------------------------------------------------------------------------------- /misc/aoc16/22.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/22.el -------------------------------------------------------------------------------- /misc/aoc16/23.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/23.el -------------------------------------------------------------------------------- /misc/aoc16/24.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/24.el -------------------------------------------------------------------------------- /misc/aoc16/25.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/25.el -------------------------------------------------------------------------------- /misc/aoc16/3.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/3.el -------------------------------------------------------------------------------- /misc/aoc16/4.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/4.el -------------------------------------------------------------------------------- /misc/aoc16/5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/5.el -------------------------------------------------------------------------------- /misc/aoc16/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/6.el -------------------------------------------------------------------------------- /misc/aoc16/7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/7.el -------------------------------------------------------------------------------- /misc/aoc16/8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/8.el -------------------------------------------------------------------------------- /misc/aoc16/9.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/9.el -------------------------------------------------------------------------------- /misc/aoc16/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc16/sol.txt -------------------------------------------------------------------------------- /misc/aoc17/1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/1.el -------------------------------------------------------------------------------- /misc/aoc17/10.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/10.el -------------------------------------------------------------------------------- /misc/aoc17/11.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/11.el -------------------------------------------------------------------------------- /misc/aoc17/12.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/12.el -------------------------------------------------------------------------------- /misc/aoc17/13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/13.el -------------------------------------------------------------------------------- /misc/aoc17/14.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/14.el -------------------------------------------------------------------------------- /misc/aoc17/15.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/15.el -------------------------------------------------------------------------------- /misc/aoc17/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/16.el -------------------------------------------------------------------------------- /misc/aoc17/17.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/17.el -------------------------------------------------------------------------------- /misc/aoc17/18.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/18.el -------------------------------------------------------------------------------- /misc/aoc17/19.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/19.el -------------------------------------------------------------------------------- /misc/aoc17/2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/2.el -------------------------------------------------------------------------------- /misc/aoc17/20.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/20.el -------------------------------------------------------------------------------- /misc/aoc17/21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/21.el -------------------------------------------------------------------------------- /misc/aoc17/22.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/22.el -------------------------------------------------------------------------------- /misc/aoc17/23.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/23.el -------------------------------------------------------------------------------- /misc/aoc17/24.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/24.el -------------------------------------------------------------------------------- /misc/aoc17/25.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/25.el -------------------------------------------------------------------------------- /misc/aoc17/3.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/3.el -------------------------------------------------------------------------------- /misc/aoc17/4.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/4.el -------------------------------------------------------------------------------- /misc/aoc17/5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/5.el -------------------------------------------------------------------------------- /misc/aoc17/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/6.el -------------------------------------------------------------------------------- /misc/aoc17/7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/7.el -------------------------------------------------------------------------------- /misc/aoc17/8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/8.el -------------------------------------------------------------------------------- /misc/aoc17/9.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/9.el -------------------------------------------------------------------------------- /misc/aoc17/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc17/sol.txt -------------------------------------------------------------------------------- /misc/aoc18/1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/1.el -------------------------------------------------------------------------------- /misc/aoc18/10.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/10.el -------------------------------------------------------------------------------- /misc/aoc18/11.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/11.el -------------------------------------------------------------------------------- /misc/aoc18/12.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/12.el -------------------------------------------------------------------------------- /misc/aoc18/13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/13.el -------------------------------------------------------------------------------- /misc/aoc18/14.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/14.el -------------------------------------------------------------------------------- /misc/aoc18/15.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/15.el -------------------------------------------------------------------------------- /misc/aoc18/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/16.el -------------------------------------------------------------------------------- /misc/aoc18/17.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/17.el -------------------------------------------------------------------------------- /misc/aoc18/18.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/18.el -------------------------------------------------------------------------------- /misc/aoc18/19.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/19.el -------------------------------------------------------------------------------- /misc/aoc18/2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/2.el -------------------------------------------------------------------------------- /misc/aoc18/20.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/20.el -------------------------------------------------------------------------------- /misc/aoc18/21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/21.el -------------------------------------------------------------------------------- /misc/aoc18/22.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/22.el -------------------------------------------------------------------------------- /misc/aoc18/23.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/23.el -------------------------------------------------------------------------------- /misc/aoc18/24.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/24.el -------------------------------------------------------------------------------- /misc/aoc18/25.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/25.el -------------------------------------------------------------------------------- /misc/aoc18/3.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/3.el -------------------------------------------------------------------------------- /misc/aoc18/4.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/4.el -------------------------------------------------------------------------------- /misc/aoc18/5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/5.el -------------------------------------------------------------------------------- /misc/aoc18/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/6.el -------------------------------------------------------------------------------- /misc/aoc18/7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/7.el -------------------------------------------------------------------------------- /misc/aoc18/8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/8.el -------------------------------------------------------------------------------- /misc/aoc18/9.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/9.el -------------------------------------------------------------------------------- /misc/aoc18/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc18/sol.txt -------------------------------------------------------------------------------- /misc/aoc19/1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/1.el -------------------------------------------------------------------------------- /misc/aoc19/10.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/10.el -------------------------------------------------------------------------------- /misc/aoc19/11.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/11.el -------------------------------------------------------------------------------- /misc/aoc19/12.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/12.el -------------------------------------------------------------------------------- /misc/aoc19/13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/13.el -------------------------------------------------------------------------------- /misc/aoc19/14.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/14.el -------------------------------------------------------------------------------- /misc/aoc19/15.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/15.el -------------------------------------------------------------------------------- /misc/aoc19/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/16.el -------------------------------------------------------------------------------- /misc/aoc19/17.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/17.el -------------------------------------------------------------------------------- /misc/aoc19/18.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/18.el -------------------------------------------------------------------------------- /misc/aoc19/19.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/19.el -------------------------------------------------------------------------------- /misc/aoc19/2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/2.el -------------------------------------------------------------------------------- /misc/aoc19/20.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/20.el -------------------------------------------------------------------------------- /misc/aoc19/21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/21.el -------------------------------------------------------------------------------- /misc/aoc19/22.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/22.el -------------------------------------------------------------------------------- /misc/aoc19/23.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/23.el -------------------------------------------------------------------------------- /misc/aoc19/24.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/24.el -------------------------------------------------------------------------------- /misc/aoc19/25.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/25.el -------------------------------------------------------------------------------- /misc/aoc19/3.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/3.el -------------------------------------------------------------------------------- /misc/aoc19/4.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/4.el -------------------------------------------------------------------------------- /misc/aoc19/5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/5.el -------------------------------------------------------------------------------- /misc/aoc19/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/6.el -------------------------------------------------------------------------------- /misc/aoc19/7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/7.el -------------------------------------------------------------------------------- /misc/aoc19/8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/8.el -------------------------------------------------------------------------------- /misc/aoc19/9.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/9.el -------------------------------------------------------------------------------- /misc/aoc19/makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./mk 3 | 4 | -------------------------------------------------------------------------------- /misc/aoc19/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/mk -------------------------------------------------------------------------------- /misc/aoc19/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc19/sol.txt -------------------------------------------------------------------------------- /misc/aoc20/1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/1.el -------------------------------------------------------------------------------- /misc/aoc20/10.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/10.el -------------------------------------------------------------------------------- /misc/aoc20/11.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/11.el -------------------------------------------------------------------------------- /misc/aoc20/12.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/12.el -------------------------------------------------------------------------------- /misc/aoc20/13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/13.el -------------------------------------------------------------------------------- /misc/aoc20/14.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/14.el -------------------------------------------------------------------------------- /misc/aoc20/15.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/15.el -------------------------------------------------------------------------------- /misc/aoc20/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/16.el -------------------------------------------------------------------------------- /misc/aoc20/17.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/17.el -------------------------------------------------------------------------------- /misc/aoc20/18.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/18.el -------------------------------------------------------------------------------- /misc/aoc20/19.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/19.el -------------------------------------------------------------------------------- /misc/aoc20/2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/2.el -------------------------------------------------------------------------------- /misc/aoc20/20.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/20.el -------------------------------------------------------------------------------- /misc/aoc20/21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/21.el -------------------------------------------------------------------------------- /misc/aoc20/22.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/22.el -------------------------------------------------------------------------------- /misc/aoc20/23.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/23.el -------------------------------------------------------------------------------- /misc/aoc20/24.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/24.el -------------------------------------------------------------------------------- /misc/aoc20/25.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/25.el -------------------------------------------------------------------------------- /misc/aoc20/3.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/3.el -------------------------------------------------------------------------------- /misc/aoc20/4.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/4.el -------------------------------------------------------------------------------- /misc/aoc20/5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/5.el -------------------------------------------------------------------------------- /misc/aoc20/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/6.el -------------------------------------------------------------------------------- /misc/aoc20/7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/7.el -------------------------------------------------------------------------------- /misc/aoc20/8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/8.el -------------------------------------------------------------------------------- /misc/aoc20/9.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/9.el -------------------------------------------------------------------------------- /misc/aoc20/makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./mk 3 | 4 | -------------------------------------------------------------------------------- /misc/aoc20/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/mk -------------------------------------------------------------------------------- /misc/aoc20/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc20/sol.txt -------------------------------------------------------------------------------- /misc/aoc21/1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/1.el -------------------------------------------------------------------------------- /misc/aoc21/10.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/10.el -------------------------------------------------------------------------------- /misc/aoc21/11.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/11.el -------------------------------------------------------------------------------- /misc/aoc21/12.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/12.el -------------------------------------------------------------------------------- /misc/aoc21/13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/13.el -------------------------------------------------------------------------------- /misc/aoc21/14.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/14.el -------------------------------------------------------------------------------- /misc/aoc21/15.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/15.el -------------------------------------------------------------------------------- /misc/aoc21/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/16.el -------------------------------------------------------------------------------- /misc/aoc21/17.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/17.el -------------------------------------------------------------------------------- /misc/aoc21/18.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/18.el -------------------------------------------------------------------------------- /misc/aoc21/19.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/19.el -------------------------------------------------------------------------------- /misc/aoc21/2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/2.el -------------------------------------------------------------------------------- /misc/aoc21/20.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/20.el -------------------------------------------------------------------------------- /misc/aoc21/21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/21.el -------------------------------------------------------------------------------- /misc/aoc21/22.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/22.el -------------------------------------------------------------------------------- /misc/aoc21/23.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/23.el -------------------------------------------------------------------------------- /misc/aoc21/24.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/24.el -------------------------------------------------------------------------------- /misc/aoc21/25.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/25.el -------------------------------------------------------------------------------- /misc/aoc21/3.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/3.el -------------------------------------------------------------------------------- /misc/aoc21/4.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/4.el -------------------------------------------------------------------------------- /misc/aoc21/5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/5.el -------------------------------------------------------------------------------- /misc/aoc21/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/6.el -------------------------------------------------------------------------------- /misc/aoc21/7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/7.el -------------------------------------------------------------------------------- /misc/aoc21/8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/8.el -------------------------------------------------------------------------------- /misc/aoc21/9.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/9.el -------------------------------------------------------------------------------- /misc/aoc21/mkinp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/mkinp.txt -------------------------------------------------------------------------------- /misc/aoc21/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/sol.txt -------------------------------------------------------------------------------- /misc/aoc21/work.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc21/work.txt -------------------------------------------------------------------------------- /misc/aoc22/1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/1.el -------------------------------------------------------------------------------- /misc/aoc22/10.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/10.el -------------------------------------------------------------------------------- /misc/aoc22/11.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/11.el -------------------------------------------------------------------------------- /misc/aoc22/12.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/12.el -------------------------------------------------------------------------------- /misc/aoc22/13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/13.el -------------------------------------------------------------------------------- /misc/aoc22/14.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/14.el -------------------------------------------------------------------------------- /misc/aoc22/15.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/15.el -------------------------------------------------------------------------------- /misc/aoc22/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/16.el -------------------------------------------------------------------------------- /misc/aoc22/17.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/17.el -------------------------------------------------------------------------------- /misc/aoc22/18.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/18.el -------------------------------------------------------------------------------- /misc/aoc22/19.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/19.el -------------------------------------------------------------------------------- /misc/aoc22/2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/2.el -------------------------------------------------------------------------------- /misc/aoc22/20.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/20.el -------------------------------------------------------------------------------- /misc/aoc22/21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/21.el -------------------------------------------------------------------------------- /misc/aoc22/22.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/22.el -------------------------------------------------------------------------------- /misc/aoc22/23.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/23.el -------------------------------------------------------------------------------- /misc/aoc22/24.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/24.el -------------------------------------------------------------------------------- /misc/aoc22/25.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/25.el -------------------------------------------------------------------------------- /misc/aoc22/3.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/3.el -------------------------------------------------------------------------------- /misc/aoc22/4.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/4.el -------------------------------------------------------------------------------- /misc/aoc22/5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/5.el -------------------------------------------------------------------------------- /misc/aoc22/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/6.el -------------------------------------------------------------------------------- /misc/aoc22/7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/7.el -------------------------------------------------------------------------------- /misc/aoc22/8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/8.el -------------------------------------------------------------------------------- /misc/aoc22/9.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/9.el -------------------------------------------------------------------------------- /misc/aoc22/mkinp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/mkinp.txt -------------------------------------------------------------------------------- /misc/aoc22/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/sol.txt -------------------------------------------------------------------------------- /misc/aoc22/solx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/solx.txt -------------------------------------------------------------------------------- /misc/aoc22/vers/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/vers/16.el -------------------------------------------------------------------------------- /misc/aoc22/vers/16_old.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/vers/16_old.el -------------------------------------------------------------------------------- /misc/aoc22/vers/16dfs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/vers/16dfs.el -------------------------------------------------------------------------------- /misc/aoc22/vers/19bfs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/vers/19bfs.el -------------------------------------------------------------------------------- /misc/aoc22/vers/22bfsok.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/vers/22bfsok.el -------------------------------------------------------------------------------- /misc/aoc22/w.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc22/w.txt -------------------------------------------------------------------------------- /misc/aoc23/1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/1.el -------------------------------------------------------------------------------- /misc/aoc23/10.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/10.el -------------------------------------------------------------------------------- /misc/aoc23/11.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/11.el -------------------------------------------------------------------------------- /misc/aoc23/12.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/12.el -------------------------------------------------------------------------------- /misc/aoc23/13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/13.el -------------------------------------------------------------------------------- /misc/aoc23/14.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/14.el -------------------------------------------------------------------------------- /misc/aoc23/15.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/15.el -------------------------------------------------------------------------------- /misc/aoc23/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/16.el -------------------------------------------------------------------------------- /misc/aoc23/17.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/17.el -------------------------------------------------------------------------------- /misc/aoc23/18.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/18.el -------------------------------------------------------------------------------- /misc/aoc23/19.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/19.el -------------------------------------------------------------------------------- /misc/aoc23/2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/2.el -------------------------------------------------------------------------------- /misc/aoc23/20.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/20.el -------------------------------------------------------------------------------- /misc/aoc23/21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/21.el -------------------------------------------------------------------------------- /misc/aoc23/22.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/22.el -------------------------------------------------------------------------------- /misc/aoc23/23.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/23.el -------------------------------------------------------------------------------- /misc/aoc23/23_1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/23_1.el -------------------------------------------------------------------------------- /misc/aoc23/24.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/24.el -------------------------------------------------------------------------------- /misc/aoc23/25.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/25.el -------------------------------------------------------------------------------- /misc/aoc23/3.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/3.el -------------------------------------------------------------------------------- /misc/aoc23/4.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/4.el -------------------------------------------------------------------------------- /misc/aoc23/5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/5.el -------------------------------------------------------------------------------- /misc/aoc23/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/6.el -------------------------------------------------------------------------------- /misc/aoc23/7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/7.el -------------------------------------------------------------------------------- /misc/aoc23/8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/8.el -------------------------------------------------------------------------------- /misc/aoc23/9.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/9.el -------------------------------------------------------------------------------- /misc/aoc23/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc23/sol.txt -------------------------------------------------------------------------------- /misc/aoc24/1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/1.el -------------------------------------------------------------------------------- /misc/aoc24/10.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/10.el -------------------------------------------------------------------------------- /misc/aoc24/11.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/11.el -------------------------------------------------------------------------------- /misc/aoc24/12.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/12.el -------------------------------------------------------------------------------- /misc/aoc24/13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/13.el -------------------------------------------------------------------------------- /misc/aoc24/14.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/14.el -------------------------------------------------------------------------------- /misc/aoc24/15.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/15.el -------------------------------------------------------------------------------- /misc/aoc24/16.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/16.el -------------------------------------------------------------------------------- /misc/aoc24/17.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/17.el -------------------------------------------------------------------------------- /misc/aoc24/18.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/18.el -------------------------------------------------------------------------------- /misc/aoc24/19.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/19.el -------------------------------------------------------------------------------- /misc/aoc24/2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/2.el -------------------------------------------------------------------------------- /misc/aoc24/20.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/20.el -------------------------------------------------------------------------------- /misc/aoc24/21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/21.el -------------------------------------------------------------------------------- /misc/aoc24/22.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/22.el -------------------------------------------------------------------------------- /misc/aoc24/23.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/23.el -------------------------------------------------------------------------------- /misc/aoc24/24.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/24.el -------------------------------------------------------------------------------- /misc/aoc24/25.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/25.el -------------------------------------------------------------------------------- /misc/aoc24/3.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/3.el -------------------------------------------------------------------------------- /misc/aoc24/4.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/4.el -------------------------------------------------------------------------------- /misc/aoc24/5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/5.el -------------------------------------------------------------------------------- /misc/aoc24/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/6.el -------------------------------------------------------------------------------- /misc/aoc24/7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/7.el -------------------------------------------------------------------------------- /misc/aoc24/8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/8.el -------------------------------------------------------------------------------- /misc/aoc24/9.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/9.el -------------------------------------------------------------------------------- /misc/aoc24/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/sol.txt -------------------------------------------------------------------------------- /misc/aoc24/vers/6.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/aoc24/vers/6.el -------------------------------------------------------------------------------- /misc/learnxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/learnxy.md -------------------------------------------------------------------------------- /misc/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/privacy.html -------------------------------------------------------------------------------- /misc/root_easylang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/root_easylang.html -------------------------------------------------------------------------------- /misc/root_kabas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/root_kabas.html -------------------------------------------------------------------------------- /misc/root_leo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/root_leo.html -------------------------------------------------------------------------------- /misc/root_tiki.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /misc/root_tiki.html.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/root_tiki.html.1 -------------------------------------------------------------------------------- /misc/ros/10001th_prime.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/10001th_prime.el -------------------------------------------------------------------------------- /misc/ros/100_doors.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/100_doors.el -------------------------------------------------------------------------------- /misc/ros/100_prisoners.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/100_prisoners.el -------------------------------------------------------------------------------- /misc/ros/15_puzzle_game.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/15_puzzle_game.el -------------------------------------------------------------------------------- /misc/ros/2048.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/2048.el -------------------------------------------------------------------------------- /misc/ros/21_game.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/21_game.el -------------------------------------------------------------------------------- /misc/ros/24_game.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/24_game.el -------------------------------------------------------------------------------- /misc/ros/99_bottles_of_beer.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/99_bottles_of_beer.el -------------------------------------------------------------------------------- /misc/ros/A+B.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/A+B.el -------------------------------------------------------------------------------- /misc/ros/ABC_correlation.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/ABC_correlation.el -------------------------------------------------------------------------------- /misc/ros/ABC_problem.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/ABC_problem.el -------------------------------------------------------------------------------- /misc/ros/ABC_words.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/ABC_words.el -------------------------------------------------------------------------------- /misc/ros/AKS_test_for_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/AKS_test_for_primes.el -------------------------------------------------------------------------------- /misc/ros/Abbreviations,_easy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Abbreviations,_easy.el -------------------------------------------------------------------------------- /misc/ros/Achilles_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Achilles_numbers.el -------------------------------------------------------------------------------- /misc/ros/Ackermann_function.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Ackermann_function.el -------------------------------------------------------------------------------- /misc/ros/Addition_chains.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Addition_chains.el -------------------------------------------------------------------------------- /misc/ros/Additive_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Additive_primes.el -------------------------------------------------------------------------------- /misc/ros/Air_mass.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Air_mass.el -------------------------------------------------------------------------------- /misc/ros/Align_columns.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Align_columns.el -------------------------------------------------------------------------------- /misc/ros/Almost_prime.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Almost_prime.el -------------------------------------------------------------------------------- /misc/ros/Alternade_words.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Alternade_words.el -------------------------------------------------------------------------------- /misc/ros/Amb.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Amb.el -------------------------------------------------------------------------------- /misc/ros/Amicable_pairs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Amicable_pairs.el -------------------------------------------------------------------------------- /misc/ros/Anagrams.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Anagrams.el -------------------------------------------------------------------------------- /misc/ros/Anaprimes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Anaprimes.el -------------------------------------------------------------------------------- /misc/ros/Animate_a_pendulum.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Animate_a_pendulum.el -------------------------------------------------------------------------------- /misc/ros/Animated_Spinners.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Animated_Spinners.el -------------------------------------------------------------------------------- /misc/ros/Animation.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Animation.el -------------------------------------------------------------------------------- /misc/ros/Anti-primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Anti-primes.el -------------------------------------------------------------------------------- /misc/ros/Archimedean_spiral.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Archimedean_spiral.el -------------------------------------------------------------------------------- /misc/ros/Array_length.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Array_length.el -------------------------------------------------------------------------------- /misc/ros/Arrays.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Arrays.el -------------------------------------------------------------------------------- /misc/ros/Ascending_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Ascending_primes.el -------------------------------------------------------------------------------- /misc/ros/Averages+Median.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Averages+Median.el -------------------------------------------------------------------------------- /misc/ros/Averages+Mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Averages+Mode.el -------------------------------------------------------------------------------- /misc/ros/B-spline.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/B-spline.el -------------------------------------------------------------------------------- /misc/ros/Babbage_problem.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Babbage_problem.el -------------------------------------------------------------------------------- /misc/ros/Babylonian_spiral.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Babylonian_spiral.el -------------------------------------------------------------------------------- /misc/ros/Bacon_cipher.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Bacon_cipher.el -------------------------------------------------------------------------------- /misc/ros/Balanced_brackets.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Balanced_brackets.el -------------------------------------------------------------------------------- /misc/ros/Barnsley_fern.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Barnsley_fern.el -------------------------------------------------------------------------------- /misc/ros/Bell_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Bell_numbers.el -------------------------------------------------------------------------------- /misc/ros/Benford's_law.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Benford's_law.el -------------------------------------------------------------------------------- /misc/ros/Best_shuffle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Best_shuffle.el -------------------------------------------------------------------------------- /misc/ros/Bifid_cipher.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Bifid_cipher.el -------------------------------------------------------------------------------- /misc/ros/Bin_given_limits.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Bin_given_limits.el -------------------------------------------------------------------------------- /misc/ros/Binary_digits.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Binary_digits.el -------------------------------------------------------------------------------- /misc/ros/Binary_search.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Binary_search.el -------------------------------------------------------------------------------- /misc/ros/Biorhythms.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Biorhythms.el -------------------------------------------------------------------------------- /misc/ros/Birthday_problem.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Birthday_problem.el -------------------------------------------------------------------------------- /misc/ros/Blum_integer.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Blum_integer.el -------------------------------------------------------------------------------- /misc/ros/Boolean_values.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Boolean_values.el -------------------------------------------------------------------------------- /misc/ros/Box_the_compass.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Box_the_compass.el -------------------------------------------------------------------------------- /misc/ros/Brace_expansion.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Brace_expansion.el -------------------------------------------------------------------------------- /misc/ros/Brazilian_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Brazilian_numbers.el -------------------------------------------------------------------------------- /misc/ros/Brilliant_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Brilliant_numbers.el -------------------------------------------------------------------------------- /misc/ros/Brownian_tree.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Brownian_tree.el -------------------------------------------------------------------------------- /misc/ros/Bulls_and_cows.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Bulls_and_cows.el -------------------------------------------------------------------------------- /misc/ros/CORDIC.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/CORDIC.el -------------------------------------------------------------------------------- /misc/ros/CRC-32.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/CRC-32.el -------------------------------------------------------------------------------- /misc/ros/CUSIP.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/CUSIP.el -------------------------------------------------------------------------------- /misc/ros/Caesar_cipher.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Caesar_cipher.el -------------------------------------------------------------------------------- /misc/ros/Calendar.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Calendar.el -------------------------------------------------------------------------------- /misc/ros/Call_a_function.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Call_a_function.el -------------------------------------------------------------------------------- /misc/ros/CalmoSoft_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/CalmoSoft_primes.el -------------------------------------------------------------------------------- /misc/ros/Calmo_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Calmo_numbers.el -------------------------------------------------------------------------------- /misc/ros/Canonicalize_CIDR.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Canonicalize_CIDR.el -------------------------------------------------------------------------------- /misc/ros/Cantor_set.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Cantor_set.el -------------------------------------------------------------------------------- /misc/ros/Casting_out_nines.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Casting_out_nines.el -------------------------------------------------------------------------------- /misc/ros/Catalan_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Catalan_numbers.el -------------------------------------------------------------------------------- /misc/ros/Changeable_words.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Changeable_words.el -------------------------------------------------------------------------------- /misc/ros/Chaocipher.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Chaocipher.el -------------------------------------------------------------------------------- /misc/ros/Chaos_game.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Chaos_game.el -------------------------------------------------------------------------------- /misc/ros/Character_codes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Character_codes.el -------------------------------------------------------------------------------- /misc/ros/Cheryl's_birthday.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Cheryl's_birthday.el -------------------------------------------------------------------------------- /misc/ros/Chinese_zodiac.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Chinese_zodiac.el -------------------------------------------------------------------------------- /misc/ros/Chowla_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Chowla_numbers.el -------------------------------------------------------------------------------- /misc/ros/Circular_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Circular_primes.el -------------------------------------------------------------------------------- /misc/ros/Collections.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Collections.el -------------------------------------------------------------------------------- /misc/ros/Color_wheel.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Color_wheel.el -------------------------------------------------------------------------------- /misc/ros/Colorful_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Colorful_numbers.el -------------------------------------------------------------------------------- /misc/ros/Combinations.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Combinations.el -------------------------------------------------------------------------------- /misc/ros/Comma_quibbling.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Comma_quibbling.el -------------------------------------------------------------------------------- /misc/ros/Comments.el: -------------------------------------------------------------------------------- 1 | # This is a comment 2 | -------------------------------------------------------------------------------- /misc/ros/Convex_hull.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Convex_hull.el -------------------------------------------------------------------------------- /misc/ros/Coprime_triplets.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Coprime_triplets.el -------------------------------------------------------------------------------- /misc/ros/Coprimes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Coprimes.el -------------------------------------------------------------------------------- /misc/ros/Copy_a_string.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Copy_a_string.el -------------------------------------------------------------------------------- /misc/ros/Count_in_factors.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Count_in_factors.el -------------------------------------------------------------------------------- /misc/ros/Count_in_octal.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Count_in_octal.el -------------------------------------------------------------------------------- /misc/ros/Count_the_coins.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Count_the_coins.el -------------------------------------------------------------------------------- /misc/ros/Cousin_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Cousin_primes.el -------------------------------------------------------------------------------- /misc/ros/Cramer's_rule.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Cramer's_rule.el -------------------------------------------------------------------------------- /misc/ros/Cuban_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Cuban_primes.el -------------------------------------------------------------------------------- /misc/ros/Currency.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Currency.el -------------------------------------------------------------------------------- /misc/ros/Curzon_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Curzon_numbers.el -------------------------------------------------------------------------------- /misc/ros/Cut_a_rectangle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Cut_a_rectangle.el -------------------------------------------------------------------------------- /misc/ros/Cycle_detection.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Cycle_detection.el -------------------------------------------------------------------------------- /misc/ros/Cyclops_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Cyclops_numbers.el -------------------------------------------------------------------------------- /misc/ros/Damm_algorithm.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Damm_algorithm.el -------------------------------------------------------------------------------- /misc/ros/Date_format.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Date_format.el -------------------------------------------------------------------------------- /misc/ros/Dating_agency.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Dating_agency.el -------------------------------------------------------------------------------- /misc/ros/Day_of_the_week.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Day_of_the_week.el -------------------------------------------------------------------------------- /misc/ros/Death_Star.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Death_Star.el -------------------------------------------------------------------------------- /misc/ros/Deceptive_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Deceptive_numbers.el -------------------------------------------------------------------------------- /misc/ros/Decision_tables.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Decision_tables.el -------------------------------------------------------------------------------- /misc/ros/Deconvolution+1D.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Deconvolution+1D.el -------------------------------------------------------------------------------- /misc/ros/Deepcopy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Deepcopy.el -------------------------------------------------------------------------------- /misc/ros/Deming's_funnel.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Deming's_funnel.el -------------------------------------------------------------------------------- /misc/ros/Descending_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Descending_primes.el -------------------------------------------------------------------------------- /misc/ros/Digital_root.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Digital_root.el -------------------------------------------------------------------------------- /misc/ros/Disarium_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Disarium_numbers.el -------------------------------------------------------------------------------- /misc/ros/Discordian_date.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Discordian_date.el -------------------------------------------------------------------------------- /misc/ros/Dividuus_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Dividuus_numbers.el -------------------------------------------------------------------------------- /misc/ros/Doomsday_rule.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Doomsday_rule.el -------------------------------------------------------------------------------- /misc/ros/Dot_product.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Dot_product.el -------------------------------------------------------------------------------- /misc/ros/Dragon_curve.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Dragon_curve.el -------------------------------------------------------------------------------- /misc/ros/Draw_a_clock.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Draw_a_clock.el -------------------------------------------------------------------------------- /misc/ros/Draw_a_cuboid.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Draw_a_cuboid.el -------------------------------------------------------------------------------- /misc/ros/Draw_a_pixel.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Draw_a_pixel.el -------------------------------------------------------------------------------- /misc/ros/Draw_a_sphere.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Draw_a_sphere.el -------------------------------------------------------------------------------- /misc/ros/Duffinian_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Duffinian_numbers.el -------------------------------------------------------------------------------- /misc/ros/Eban_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Eban_numbers.el -------------------------------------------------------------------------------- /misc/ros/Egyptian_division.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Egyptian_division.el -------------------------------------------------------------------------------- /misc/ros/Emirp_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Emirp_primes.el -------------------------------------------------------------------------------- /misc/ros/Empty_program.el: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /misc/ros/Empty_string.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Empty_string.el -------------------------------------------------------------------------------- /misc/ros/Endless_maze.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Endless_maze.el -------------------------------------------------------------------------------- /misc/ros/Engel_expansion.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Engel_expansion.el -------------------------------------------------------------------------------- /misc/ros/Entropy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Entropy.el -------------------------------------------------------------------------------- /misc/ros/Equilibrium_index.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Equilibrium_index.el -------------------------------------------------------------------------------- /misc/ros/Erdős-primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Erdős-primes.el -------------------------------------------------------------------------------- /misc/ros/Esthetic_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Esthetic_numbers.el -------------------------------------------------------------------------------- /misc/ros/Euclidean_rhythm.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Euclidean_rhythm.el -------------------------------------------------------------------------------- /misc/ros/Euler's_identity.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Euler's_identity.el -------------------------------------------------------------------------------- /misc/ros/Euler_method.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Euler_method.el -------------------------------------------------------------------------------- /misc/ros/Even_or_odd.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Even_or_odd.el -------------------------------------------------------------------------------- /misc/ros/Events.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Events.el -------------------------------------------------------------------------------- /misc/ros/Execute_Brain****.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Execute_Brain****.el -------------------------------------------------------------------------------- /misc/ros/Execute_HQ9+.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Execute_HQ9+.el -------------------------------------------------------------------------------- /misc/ros/Execute_SNUSP.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Execute_SNUSP.el -------------------------------------------------------------------------------- /misc/ros/Extra_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Extra_primes.el -------------------------------------------------------------------------------- /misc/ros/Extreme_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Extreme_primes.el -------------------------------------------------------------------------------- /misc/ros/FASTA_format.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/FASTA_format.el -------------------------------------------------------------------------------- /misc/ros/Factorial.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Factorial.el -------------------------------------------------------------------------------- /misc/ros/Factorial_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Factorial_primes.el -------------------------------------------------------------------------------- /misc/ros/Factorions.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Factorions.el -------------------------------------------------------------------------------- /misc/ros/Farey_sequence.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Farey_sequence.el -------------------------------------------------------------------------------- /misc/ros/Fibonacci_word.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Fibonacci_word.el -------------------------------------------------------------------------------- /misc/ros/Filter.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Filter.el -------------------------------------------------------------------------------- /misc/ros/Five_weekends.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Five_weekends.el -------------------------------------------------------------------------------- /misc/ros/Fivenum.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Fivenum.el -------------------------------------------------------------------------------- /misc/ros/FizzBuzz.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/FizzBuzz.el -------------------------------------------------------------------------------- /misc/ros/Floyd's_triangle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Floyd's_triangle.el -------------------------------------------------------------------------------- /misc/ros/Forbidden_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Forbidden_numbers.el -------------------------------------------------------------------------------- /misc/ros/Forest_fire.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Forest_fire.el -------------------------------------------------------------------------------- /misc/ros/Fortunate_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Fortunate_numbers.el -------------------------------------------------------------------------------- /misc/ros/Four_bit_adder.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Four_bit_adder.el -------------------------------------------------------------------------------- /misc/ros/Four_is_magic.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Four_is_magic.el -------------------------------------------------------------------------------- /misc/ros/Fractal_tree.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Fractal_tree.el -------------------------------------------------------------------------------- /misc/ros/Fractran.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Fractran.el -------------------------------------------------------------------------------- /misc/ros/Frobenius_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Frobenius_numbers.el -------------------------------------------------------------------------------- /misc/ros/Fusc_sequence.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Fusc_sequence.el -------------------------------------------------------------------------------- /misc/ros/Gamma_function.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Gamma_function.el -------------------------------------------------------------------------------- /misc/ros/Gapful_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Gapful_numbers.el -------------------------------------------------------------------------------- /misc/ros/Gaussian_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Gaussian_primes.el -------------------------------------------------------------------------------- /misc/ros/General_FizzBuzz.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/General_FizzBuzz.el -------------------------------------------------------------------------------- /misc/ros/Geohash.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Geohash.el -------------------------------------------------------------------------------- /misc/ros/Giuga_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Giuga_numbers.el -------------------------------------------------------------------------------- /misc/ros/Goldbach's_comet.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Goldbach's_comet.el -------------------------------------------------------------------------------- /misc/ros/Gosper's_hack.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Gosper's_hack.el -------------------------------------------------------------------------------- /misc/ros/Gradient_descent.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Gradient_descent.el -------------------------------------------------------------------------------- /misc/ros/Gray_code.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Gray_code.el -------------------------------------------------------------------------------- /misc/ros/Guess_the_number.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Guess_the_number.el -------------------------------------------------------------------------------- /misc/ros/Halt_and_catch_fire.el: -------------------------------------------------------------------------------- 1 | a[] = [ ] 2 | print a[1] 3 | -------------------------------------------------------------------------------- /misc/ros/Hamming_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Hamming_numbers.el -------------------------------------------------------------------------------- /misc/ros/Happy_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Happy_numbers.el -------------------------------------------------------------------------------- /misc/ros/Happy_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Happy_primes.el -------------------------------------------------------------------------------- /misc/ros/Harmonic_series.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Harmonic_series.el -------------------------------------------------------------------------------- /misc/ros/Harriss_Spiral.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Harriss_Spiral.el -------------------------------------------------------------------------------- /misc/ros/Haversine_formula.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Haversine_formula.el -------------------------------------------------------------------------------- /misc/ros/Hello_world+Graphical.el: -------------------------------------------------------------------------------- 1 | gcolor 700 2 | gtext 10 60 "Goodbye, World!" 3 | -------------------------------------------------------------------------------- /misc/ros/Hello_world+Text.el: -------------------------------------------------------------------------------- 1 | print "Hello world!" 2 | -------------------------------------------------------------------------------- /misc/ros/Here_document.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Here_document.el -------------------------------------------------------------------------------- /misc/ros/Hex_words.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Hex_words.el -------------------------------------------------------------------------------- /misc/ros/Hilbert_curve.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Hilbert_curve.el -------------------------------------------------------------------------------- /misc/ros/Honaker_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Honaker_primes.el -------------------------------------------------------------------------------- /misc/ros/Honeycombs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Honeycombs.el -------------------------------------------------------------------------------- /misc/ros/Horse_racing.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Horse_racing.el -------------------------------------------------------------------------------- /misc/ros/Hourglass_puzzle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Hourglass_puzzle.el -------------------------------------------------------------------------------- /misc/ros/Humble_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Humble_numbers.el -------------------------------------------------------------------------------- /misc/ros/Hunt_the_Wumpus.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Hunt_the_Wumpus.el -------------------------------------------------------------------------------- /misc/ros/IBAN.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/IBAN.el -------------------------------------------------------------------------------- /misc/ros/Iccanobif_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Iccanobif_primes.el -------------------------------------------------------------------------------- /misc/ros/Identity_matrix.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Identity_matrix.el -------------------------------------------------------------------------------- /misc/ros/Idoneal_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Idoneal_numbers.el -------------------------------------------------------------------------------- /misc/ros/Image_noise.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Image_noise.el -------------------------------------------------------------------------------- /misc/ros/Infinity.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Infinity.el -------------------------------------------------------------------------------- /misc/ros/Input_loop.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Input_loop.el -------------------------------------------------------------------------------- /misc/ros/Integer_roots.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Integer_roots.el -------------------------------------------------------------------------------- /misc/ros/Integer_sequence.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Integer_sequence.el -------------------------------------------------------------------------------- /misc/ros/Jaccard_index.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Jaccard_index.el -------------------------------------------------------------------------------- /misc/ros/Jacobi_symbol.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Jacobi_symbol.el -------------------------------------------------------------------------------- /misc/ros/Jaro_similarity.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Jaro_similarity.el -------------------------------------------------------------------------------- /misc/ros/Jewels_and_stones.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Jewels_and_stones.el -------------------------------------------------------------------------------- /misc/ros/JortSort.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/JortSort.el -------------------------------------------------------------------------------- /misc/ros/Josephus_problem.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Josephus_problem.el -------------------------------------------------------------------------------- /misc/ros/Juggler_sequence.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Juggler_sequence.el -------------------------------------------------------------------------------- /misc/ros/Julia_set.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Julia_set.el -------------------------------------------------------------------------------- /misc/ros/Kaprekar_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Kaprekar_numbers.el -------------------------------------------------------------------------------- /misc/ros/Kempner_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Kempner_numbers.el -------------------------------------------------------------------------------- /misc/ros/Knight's_tour.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Knight's_tour.el -------------------------------------------------------------------------------- /misc/ros/Knuth_shuffle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Knuth_shuffle.el -------------------------------------------------------------------------------- /misc/ros/Koch_curve.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Koch_curve.el -------------------------------------------------------------------------------- /misc/ros/Kosaraju.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Kosaraju.el -------------------------------------------------------------------------------- /misc/ros/Kronecker_product.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Kronecker_product.el -------------------------------------------------------------------------------- /misc/ros/L-system.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/L-system.el -------------------------------------------------------------------------------- /misc/ros/LU_decomposition.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/LU_decomposition.el -------------------------------------------------------------------------------- /misc/ros/Lah_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Lah_numbers.el -------------------------------------------------------------------------------- /misc/ros/Langton's_ant.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Langton's_ant.el -------------------------------------------------------------------------------- /misc/ros/Last_list_item.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Last_list_item.el -------------------------------------------------------------------------------- /misc/ros/Leap_year.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Leap_year.el -------------------------------------------------------------------------------- /misc/ros/Leonardo_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Leonardo_numbers.el -------------------------------------------------------------------------------- /misc/ros/Letter_frequency.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Letter_frequency.el -------------------------------------------------------------------------------- /misc/ros/List_rooted_trees.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/List_rooted_trees.el -------------------------------------------------------------------------------- /misc/ros/Literals+Integer.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Literals+Integer.el -------------------------------------------------------------------------------- /misc/ros/Literals+String.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Literals+String.el -------------------------------------------------------------------------------- /misc/ros/Long_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Long_primes.el -------------------------------------------------------------------------------- /misc/ros/Long_stairs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Long_stairs.el -------------------------------------------------------------------------------- /misc/ros/Long_year.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Long_year.el -------------------------------------------------------------------------------- /misc/ros/Loops+Break.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Loops+Break.el -------------------------------------------------------------------------------- /misc/ros/Loops+Do-while.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Loops+Do-while.el -------------------------------------------------------------------------------- /misc/ros/Loops+Downward_for.el: -------------------------------------------------------------------------------- 1 | for i = 10 downto 0 2 | print i 3 | . 4 | -------------------------------------------------------------------------------- /misc/ros/Loops+For.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Loops+For.el -------------------------------------------------------------------------------- /misc/ros/Loops+Foreach.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Loops+Foreach.el -------------------------------------------------------------------------------- /misc/ros/Loops+Infinite.el: -------------------------------------------------------------------------------- 1 | while 1 = 1 2 | print "SPAM" 3 | . 4 | -------------------------------------------------------------------------------- /misc/ros/Loops+Nested.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Loops+Nested.el -------------------------------------------------------------------------------- /misc/ros/Loops+While.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Loops+While.el -------------------------------------------------------------------------------- /misc/ros/Lucas-Lehmer_test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Lucas-Lehmer_test.el -------------------------------------------------------------------------------- /misc/ros/Ludic_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Ludic_numbers.el -------------------------------------------------------------------------------- /misc/ros/Lunar_arithmetic.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Lunar_arithmetic.el -------------------------------------------------------------------------------- /misc/ros/Lyndon_word.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Lyndon_word.el -------------------------------------------------------------------------------- /misc/ros/MD5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/MD5.el -------------------------------------------------------------------------------- /misc/ros/Mad_Libs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Mad_Libs.el -------------------------------------------------------------------------------- /misc/ros/Magic_8-ball.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Magic_8-ball.el -------------------------------------------------------------------------------- /misc/ros/Magic_constant.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Magic_constant.el -------------------------------------------------------------------------------- /misc/ros/Magic_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Magic_numbers.el -------------------------------------------------------------------------------- /misc/ros/Mandelbrot_set.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Mandelbrot_set.el -------------------------------------------------------------------------------- /misc/ros/Map_range.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Map_range.el -------------------------------------------------------------------------------- /misc/ros/Marching_squares.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Marching_squares.el -------------------------------------------------------------------------------- /misc/ros/Mastermind.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Mastermind.el -------------------------------------------------------------------------------- /misc/ros/Mayan_numerals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Mayan_numerals.el -------------------------------------------------------------------------------- /misc/ros/Maze_generation.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Maze_generation.el -------------------------------------------------------------------------------- /misc/ros/Maze_solving.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Maze_solving.el -------------------------------------------------------------------------------- /misc/ros/McNuggets_problem.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/McNuggets_problem.el -------------------------------------------------------------------------------- /misc/ros/Mersenne_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Mersenne_primes.el -------------------------------------------------------------------------------- /misc/ros/Mertens_function.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Mertens_function.el -------------------------------------------------------------------------------- /misc/ros/Minesweeper_game.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Minesweeper_game.el -------------------------------------------------------------------------------- /misc/ros/Minimum_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Minimum_primes.el -------------------------------------------------------------------------------- /misc/ros/Modular_inverse.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Modular_inverse.el -------------------------------------------------------------------------------- /misc/ros/Morse_code.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Morse_code.el -------------------------------------------------------------------------------- /misc/ros/Mosaic_matrix.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Mosaic_matrix.el -------------------------------------------------------------------------------- /misc/ros/Motzkin_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Motzkin_numbers.el -------------------------------------------------------------------------------- /misc/ros/Mouse_position.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Mouse_position.el -------------------------------------------------------------------------------- /misc/ros/Multi-base_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Multi-base_primes.el -------------------------------------------------------------------------------- /misc/ros/Multifactorial.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Multifactorial.el -------------------------------------------------------------------------------- /misc/ros/Multisplit.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Multisplit.el -------------------------------------------------------------------------------- /misc/ros/Munching_squares.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Munching_squares.el -------------------------------------------------------------------------------- /misc/ros/Musical_scale.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Musical_scale.el -------------------------------------------------------------------------------- /misc/ros/Mutual_recursion.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Mutual_recursion.el -------------------------------------------------------------------------------- /misc/ros/Möbius_function.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Möbius_function.el -------------------------------------------------------------------------------- /misc/ros/N'th.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/N'th.el -------------------------------------------------------------------------------- /misc/ros/N-grams.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/N-grams.el -------------------------------------------------------------------------------- /misc/ros/N-queens_problem.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/N-queens_problem.el -------------------------------------------------------------------------------- /misc/ros/Names_to_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Names_to_numbers.el -------------------------------------------------------------------------------- /misc/ros/Neighbour_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Neighbour_primes.el -------------------------------------------------------------------------------- /misc/ros/Nested_function.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Nested_function.el -------------------------------------------------------------------------------- /misc/ros/Nice_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Nice_primes.el -------------------------------------------------------------------------------- /misc/ros/Nim_game.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Nim_game.el -------------------------------------------------------------------------------- /misc/ros/Nimber_arithmetic.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Nimber_arithmetic.el -------------------------------------------------------------------------------- /misc/ros/No_prime_sums.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/No_prime_sums.el -------------------------------------------------------------------------------- /misc/ros/Nonoblock.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Nonoblock.el -------------------------------------------------------------------------------- /misc/ros/Nth_root.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Nth_root.el -------------------------------------------------------------------------------- /misc/ros/Number_names.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Number_names.el -------------------------------------------------------------------------------- /misc/ros/Odd_word_problem.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Odd_word_problem.el -------------------------------------------------------------------------------- /misc/ros/Odd_words.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Odd_words.el -------------------------------------------------------------------------------- /misc/ros/One-two_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/One-two_primes.el -------------------------------------------------------------------------------- /misc/ros/Orbital_elements.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Orbital_elements.el -------------------------------------------------------------------------------- /misc/ros/Ordered_words.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Ordered_words.el -------------------------------------------------------------------------------- /misc/ros/Ormiston_pairs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Ormiston_pairs.el -------------------------------------------------------------------------------- /misc/ros/Ormiston_triples.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Ormiston_triples.el -------------------------------------------------------------------------------- /misc/ros/Padovan_sequence.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Padovan_sequence.el -------------------------------------------------------------------------------- /misc/ros/Palindrome_dates.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Palindrome_dates.el -------------------------------------------------------------------------------- /misc/ros/Pandigital_prime.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Pandigital_prime.el -------------------------------------------------------------------------------- /misc/ros/Pangram_checker.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Pangram_checker.el -------------------------------------------------------------------------------- /misc/ros/Particle_fountain.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Particle_fountain.el -------------------------------------------------------------------------------- /misc/ros/Pascal's_triangle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Pascal's_triangle.el -------------------------------------------------------------------------------- /misc/ros/Peano_curve.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Peano_curve.el -------------------------------------------------------------------------------- /misc/ros/Penney's_game.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Penney's_game.el -------------------------------------------------------------------------------- /misc/ros/Penrose_tiling.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Penrose_tiling.el -------------------------------------------------------------------------------- /misc/ros/Pentagram.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Pentagram.el -------------------------------------------------------------------------------- /misc/ros/Perceptron.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Perceptron.el -------------------------------------------------------------------------------- /misc/ros/Perfect_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Perfect_numbers.el -------------------------------------------------------------------------------- /misc/ros/Perfect_shuffle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Perfect_shuffle.el -------------------------------------------------------------------------------- /misc/ros/Periodic_table.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Periodic_table.el -------------------------------------------------------------------------------- /misc/ros/Perlin_noise.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Perlin_noise.el -------------------------------------------------------------------------------- /misc/ros/Permutation_test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Permutation_test.el -------------------------------------------------------------------------------- /misc/ros/Permutations.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Permutations.el -------------------------------------------------------------------------------- /misc/ros/Phrase_reversals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Phrase_reversals.el -------------------------------------------------------------------------------- /misc/ros/Pierpont_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Pierpont_primes.el -------------------------------------------------------------------------------- /misc/ros/Pig_the_dice_game.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Pig_the_dice_game.el -------------------------------------------------------------------------------- /misc/ros/Pinstripe+Display.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Pinstripe+Display.el -------------------------------------------------------------------------------- /misc/ros/Piprimes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Piprimes.el -------------------------------------------------------------------------------- /misc/ros/Pisano_period.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Pisano_period.el -------------------------------------------------------------------------------- /misc/ros/Plasma_effect.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Plasma_effect.el -------------------------------------------------------------------------------- /misc/ros/Playfair_cipher.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Playfair_cipher.el -------------------------------------------------------------------------------- /misc/ros/Playing_cards.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Playing_cards.el -------------------------------------------------------------------------------- /misc/ros/Polyspiral.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Polyspiral.el -------------------------------------------------------------------------------- /misc/ros/Population_count.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Population_count.el -------------------------------------------------------------------------------- /misc/ros/Powerful_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Powerful_numbers.el -------------------------------------------------------------------------------- /misc/ros/Practical_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Practical_numbers.el -------------------------------------------------------------------------------- /misc/ros/Price_fraction.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Price_fraction.el -------------------------------------------------------------------------------- /misc/ros/Prime_conspiracy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Prime_conspiracy.el -------------------------------------------------------------------------------- /misc/ros/Prime_groups.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Prime_groups.el -------------------------------------------------------------------------------- /misc/ros/Prime_triangle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Prime_triangle.el -------------------------------------------------------------------------------- /misc/ros/Prime_triplets.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Prime_triplets.el -------------------------------------------------------------------------------- /misc/ros/Prime_words.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Prime_words.el -------------------------------------------------------------------------------- /misc/ros/Primes:_n*2^m+1.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Primes:_n*2^m+1.el -------------------------------------------------------------------------------- /misc/ros/Primorial_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Primorial_numbers.el -------------------------------------------------------------------------------- /misc/ros/Proper_divisors.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Proper_divisors.el -------------------------------------------------------------------------------- /misc/ros/Pythagoras_tree.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Pythagoras_tree.el -------------------------------------------------------------------------------- /misc/ros/Quaternion_type.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Quaternion_type.el -------------------------------------------------------------------------------- /misc/ros/Queue+Definition.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Queue+Definition.el -------------------------------------------------------------------------------- /misc/ros/Queue+Usage.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Queue+Usage.el -------------------------------------------------------------------------------- /misc/ros/Quine.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Quine.el -------------------------------------------------------------------------------- /misc/ros/Rainbow.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Rainbow.el -------------------------------------------------------------------------------- /misc/ros/Ramanujan_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Ramanujan_primes.el -------------------------------------------------------------------------------- /misc/ros/Random_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Random_numbers.el -------------------------------------------------------------------------------- /misc/ros/Range_expansion.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Range_expansion.el -------------------------------------------------------------------------------- /misc/ros/Range_extraction.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Range_extraction.el -------------------------------------------------------------------------------- /misc/ros/Ranking_methods.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Ranking_methods.el -------------------------------------------------------------------------------- /misc/ros/Rare_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Rare_numbers.el -------------------------------------------------------------------------------- /misc/ros/Raster_bars.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Raster_bars.el -------------------------------------------------------------------------------- /misc/ros/Rate_counter.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Rate_counter.el -------------------------------------------------------------------------------- /misc/ros/Rep-string.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Rep-string.el -------------------------------------------------------------------------------- /misc/ros/Repeat_a_string.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Repeat_a_string.el -------------------------------------------------------------------------------- /misc/ros/Resistor_mesh.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Resistor_mesh.el -------------------------------------------------------------------------------- /misc/ros/Reverse_a_string.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Reverse_a_string.el -------------------------------------------------------------------------------- /misc/ros/Rhonda_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Rhonda_numbers.el -------------------------------------------------------------------------------- /misc/ros/Riordan_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Riordan_numbers.el -------------------------------------------------------------------------------- /misc/ros/Roots_of_unity.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Roots_of_unity.el -------------------------------------------------------------------------------- /misc/ros/Rot-13.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Rot-13.el -------------------------------------------------------------------------------- /misc/ros/SEDOLs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/SEDOLs.el -------------------------------------------------------------------------------- /misc/ros/Sattolo_cycle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sattolo_cycle.el -------------------------------------------------------------------------------- /misc/ros/Search_a_list.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Search_a_list.el -------------------------------------------------------------------------------- /misc/ros/Self_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Self_numbers.el -------------------------------------------------------------------------------- /misc/ros/Semiprime.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Semiprime.el -------------------------------------------------------------------------------- /misc/ros/Semordnilap.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Semordnilap.el -------------------------------------------------------------------------------- /misc/ros/Set_puzzle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Set_puzzle.el -------------------------------------------------------------------------------- /misc/ros/Sexy_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sexy_primes.el -------------------------------------------------------------------------------- /misc/ros/Shape-Machine.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Shape-Machine.el -------------------------------------------------------------------------------- /misc/ros/Show_ASCII_table.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Show_ASCII_table.el -------------------------------------------------------------------------------- /misc/ros/Show_the_epoch.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Show_the_epoch.el -------------------------------------------------------------------------------- /misc/ros/Sierpinski_carpet.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sierpinski_carpet.el -------------------------------------------------------------------------------- /misc/ros/Sierpinski_curve.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sierpinski_curve.el -------------------------------------------------------------------------------- /misc/ros/Sine_wave.el: -------------------------------------------------------------------------------- 1 | sound [ 110 5 ] 2 | -------------------------------------------------------------------------------- /misc/ros/Sisyphus_sequence.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sisyphus_sequence.el -------------------------------------------------------------------------------- /misc/ros/Sleep.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sleep.el -------------------------------------------------------------------------------- /misc/ros/Smallest_multiple.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Smallest_multiple.el -------------------------------------------------------------------------------- /misc/ros/Smallest_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Smallest_numbers.el -------------------------------------------------------------------------------- /misc/ros/Smith_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Smith_numbers.el -------------------------------------------------------------------------------- /misc/ros/Snake.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Snake.el -------------------------------------------------------------------------------- /misc/ros/Soundex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Soundex.el -------------------------------------------------------------------------------- /misc/ros/Special_divisors.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Special_divisors.el -------------------------------------------------------------------------------- /misc/ros/Sphenic_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sphenic_numbers.el -------------------------------------------------------------------------------- /misc/ros/Spiral_matrix.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Spiral_matrix.el -------------------------------------------------------------------------------- /misc/ros/Stack.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Stack.el -------------------------------------------------------------------------------- /misc/ros/Statistics+Basic.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Statistics+Basic.el -------------------------------------------------------------------------------- /misc/ros/Steady_squares.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Steady_squares.el -------------------------------------------------------------------------------- /misc/ros/Strange_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Strange_numbers.el -------------------------------------------------------------------------------- /misc/ros/String_append.el: -------------------------------------------------------------------------------- 1 | a$ = "hello" 2 | a$ &= " world" 3 | print a$ 4 | -------------------------------------------------------------------------------- /misc/ros/String_case.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/String_case.el -------------------------------------------------------------------------------- /misc/ros/String_comparison.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/String_comparison.el -------------------------------------------------------------------------------- /misc/ros/String_length.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/String_length.el -------------------------------------------------------------------------------- /misc/ros/String_matching.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/String_matching.el -------------------------------------------------------------------------------- /misc/ros/String_prepend.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/String_prepend.el -------------------------------------------------------------------------------- /misc/ros/Sturmian_word.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sturmian_word.el -------------------------------------------------------------------------------- /misc/ros/Sub-unit_squares.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sub-unit_squares.el -------------------------------------------------------------------------------- /misc/ros/Subleq.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Subleq.el -------------------------------------------------------------------------------- /misc/ros/Substring.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Substring.el -------------------------------------------------------------------------------- /misc/ros/Substring_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Substring_primes.el -------------------------------------------------------------------------------- /misc/ros/Sudan_function.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sudan_function.el -------------------------------------------------------------------------------- /misc/ros/Sudoku.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sudoku.el -------------------------------------------------------------------------------- /misc/ros/Sum_of_a_series.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sum_of_a_series.el -------------------------------------------------------------------------------- /misc/ros/Sum_of_divisors.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sum_of_divisors.el -------------------------------------------------------------------------------- /misc/ros/Sum_of_squares.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sum_of_squares.el -------------------------------------------------------------------------------- /misc/ros/Sum_to_100.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sum_to_100.el -------------------------------------------------------------------------------- /misc/ros/Summarize_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Summarize_primes.el -------------------------------------------------------------------------------- /misc/ros/Sunflower_fractal.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Sunflower_fractal.el -------------------------------------------------------------------------------- /misc/ros/Super-d_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Super-d_numbers.el -------------------------------------------------------------------------------- /misc/ros/Superellipse.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Superellipse.el -------------------------------------------------------------------------------- /misc/ros/System_time.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/System_time.el -------------------------------------------------------------------------------- /misc/ros/Tau_function.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Tau_function.el -------------------------------------------------------------------------------- /misc/ros/Tau_number.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Tau_number.el -------------------------------------------------------------------------------- /misc/ros/Taxicab_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Taxicab_numbers.el -------------------------------------------------------------------------------- /misc/ros/Teacup_rim_text.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Teacup_rim_text.el -------------------------------------------------------------------------------- /misc/ros/Ternary_logic.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Ternary_logic.el -------------------------------------------------------------------------------- /misc/ros/Test_integerness.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Test_integerness.el -------------------------------------------------------------------------------- /misc/ros/Text_between.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Text_between.el -------------------------------------------------------------------------------- /misc/ros/The_Name_Game.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/The_Name_Game.el -------------------------------------------------------------------------------- /misc/ros/Thue-Morse.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Thue-Morse.el -------------------------------------------------------------------------------- /misc/ros/Tic-tac-toe.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Tic-tac-toe.el -------------------------------------------------------------------------------- /misc/ros/Time_a_function.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Time_a_function.el -------------------------------------------------------------------------------- /misc/ros/Tokenize_a_string.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Tokenize_a_string.el -------------------------------------------------------------------------------- /misc/ros/Topological_sort.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Topological_sort.el -------------------------------------------------------------------------------- /misc/ros/Topswops.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Topswops.el -------------------------------------------------------------------------------- /misc/ros/Totient_function.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Totient_function.el -------------------------------------------------------------------------------- /misc/ros/Towers_of_Hanoi.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Towers_of_Hanoi.el -------------------------------------------------------------------------------- /misc/ros/Tree_traversal.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Tree_traversal.el -------------------------------------------------------------------------------- /misc/ros/Twelve_statements.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Twelve_statements.el -------------------------------------------------------------------------------- /misc/ros/Twin_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Twin_primes.el -------------------------------------------------------------------------------- /misc/ros/Two_sum.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Two_sum.el -------------------------------------------------------------------------------- /misc/ros/UPC.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/UPC.el -------------------------------------------------------------------------------- /misc/ros/URL_decoding.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/URL_decoding.el -------------------------------------------------------------------------------- /misc/ros/URL_encoding.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/URL_encoding.el -------------------------------------------------------------------------------- /misc/ros/Ulam_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Ulam_numbers.el -------------------------------------------------------------------------------- /misc/ros/Unescape_a_string.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Unescape_a_string.el -------------------------------------------------------------------------------- /misc/ros/Unicode_strings.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Unicode_strings.el -------------------------------------------------------------------------------- /misc/ros/Unique_characters.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Unique_characters.el -------------------------------------------------------------------------------- /misc/ros/User_input+Text.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/User_input+Text.el -------------------------------------------------------------------------------- /misc/ros/Vampire_number.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Vampire_number.el -------------------------------------------------------------------------------- /misc/ros/Van_Eck_sequence.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Van_Eck_sequence.el -------------------------------------------------------------------------------- /misc/ros/Variables.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Variables.el -------------------------------------------------------------------------------- /misc/ros/Vector.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Vector.el -------------------------------------------------------------------------------- /misc/ros/Vector_products.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Vector_products.el -------------------------------------------------------------------------------- /misc/ros/Vigenère_cipher.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Vigenère_cipher.el -------------------------------------------------------------------------------- /misc/ros/Voronoi_diagram.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Voronoi_diagram.el -------------------------------------------------------------------------------- /misc/ros/Wagstaff_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Wagstaff_primes.el -------------------------------------------------------------------------------- /misc/ros/Walsh_matrix.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Walsh_matrix.el -------------------------------------------------------------------------------- /misc/ros/War_card_game.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/War_card_game.el -------------------------------------------------------------------------------- /misc/ros/Weird_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Weird_numbers.el -------------------------------------------------------------------------------- /misc/ros/Wieferich_primes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Wieferich_primes.el -------------------------------------------------------------------------------- /misc/ros/Wireworld.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Wireworld.el -------------------------------------------------------------------------------- /misc/ros/Word_ladder.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Word_ladder.el -------------------------------------------------------------------------------- /misc/ros/Word_wheel.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Word_wheel.el -------------------------------------------------------------------------------- /misc/ros/Word_wrap.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Word_wrap.el -------------------------------------------------------------------------------- /misc/ros/Yin_and_yang.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Yin_and_yang.el -------------------------------------------------------------------------------- /misc/ros/Zero_to_the_zero_power.el: -------------------------------------------------------------------------------- 1 | print pow 0 0 2 | -------------------------------------------------------------------------------- /misc/ros/Zig-zag_matrix.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Zig-zag_matrix.el -------------------------------------------------------------------------------- /misc/ros/Zsigmondy_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Zsigmondy_numbers.el -------------------------------------------------------------------------------- /misc/ros/Zumkeller_numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/Zumkeller_numbers.el -------------------------------------------------------------------------------- /misc/ros/_get_date: -------------------------------------------------------------------------------- 1 | 251129 2 | -------------------------------------------------------------------------------- /misc/ros/_gtasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/_gtasks.sh -------------------------------------------------------------------------------- /misc/ros/_rosget.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/_rosget.awk -------------------------------------------------------------------------------- /misc/ros/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/diff.sh -------------------------------------------------------------------------------- /misc/ros/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/g -------------------------------------------------------------------------------- /misc/ros/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/get.sh -------------------------------------------------------------------------------- /misc/ros/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/mk -------------------------------------------------------------------------------- /misc/ros/rosmk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/rosmk.sh -------------------------------------------------------------------------------- /misc/ros/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/tasks.py -------------------------------------------------------------------------------- /misc/ros/test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/test.out -------------------------------------------------------------------------------- /misc/ros/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/test.sh -------------------------------------------------------------------------------- /misc/ros/testall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/testall.sh -------------------------------------------------------------------------------- /misc/ros/x.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/x.el -------------------------------------------------------------------------------- /misc/ros/xget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/ros/xget.sh -------------------------------------------------------------------------------- /misc/sky/icon.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/sky/icon.el -------------------------------------------------------------------------------- /misc/sky/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/sky/icon.png -------------------------------------------------------------------------------- /misc/sky/makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./mk 3 | 4 | -------------------------------------------------------------------------------- /misc/sky/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/sky/mk -------------------------------------------------------------------------------- /misc/sky/mk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/sky/mk1 -------------------------------------------------------------------------------- /misc/sky/sky.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/sky/sky.el -------------------------------------------------------------------------------- /misc/test_aoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/test_aoc -------------------------------------------------------------------------------- /misc/test_aocall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/test_aocall -------------------------------------------------------------------------------- /misc/work/bnwork.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/work/bnwork.el -------------------------------------------------------------------------------- /misc/work/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/work/deploy.yml -------------------------------------------------------------------------------- /misc/work/fibon.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/work/fibon.el -------------------------------------------------------------------------------- /misc/work/fibon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/work/fibon.py -------------------------------------------------------------------------------- /misc/work/root_nbasic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/work/root_nbasic.html -------------------------------------------------------------------------------- /misc/work/stack.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/misc/work/stack.el -------------------------------------------------------------------------------- /mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/mk -------------------------------------------------------------------------------- /mzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/mzip -------------------------------------------------------------------------------- /native/kbgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/native/kbgr.c -------------------------------------------------------------------------------- /native/kbgr_nosdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/native/kbgr_nosdl.c -------------------------------------------------------------------------------- /native/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/native/readme.md -------------------------------------------------------------------------------- /native/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/native/run -------------------------------------------------------------------------------- /native/runc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/native/runc -------------------------------------------------------------------------------- /native/rundbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/native/rundbg -------------------------------------------------------------------------------- /native/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/native/test.el -------------------------------------------------------------------------------- /native/testg.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/native/testg.el -------------------------------------------------------------------------------- /native/testkbgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/native/testkbgr -------------------------------------------------------------------------------- /progs/15-puzzle.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/15-puzzle.kab -------------------------------------------------------------------------------- /progs/1st-math-trainer.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/1st-math-trainer.kab -------------------------------------------------------------------------------- /progs/1x1-trainer.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/1x1-trainer.kab -------------------------------------------------------------------------------- /progs/barnsley-fern.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/barnsley-fern.kab -------------------------------------------------------------------------------- /progs/bouncing-balls.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/bouncing-balls.kab -------------------------------------------------------------------------------- /progs/clock.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/clock.kab -------------------------------------------------------------------------------- /progs/combat-balls.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/combat-balls.kab -------------------------------------------------------------------------------- /progs/eyes-draw.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/eyes-draw.kab -------------------------------------------------------------------------------- /progs/fractal-tree.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/fractal-tree.kab -------------------------------------------------------------------------------- /progs/game-of-life.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/game-of-life.kab -------------------------------------------------------------------------------- /progs/gravity.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/gravity.kab -------------------------------------------------------------------------------- /progs/ice-cream.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/ice-cream.kab -------------------------------------------------------------------------------- /progs/learning-clock.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/learning-clock.kab -------------------------------------------------------------------------------- /progs/letter-memory.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/letter-memory.kab -------------------------------------------------------------------------------- /progs/mandelbrot.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/mandelbrot.kab -------------------------------------------------------------------------------- /progs/mastermind.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/mastermind.kab -------------------------------------------------------------------------------- /progs/math-trainer.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/math-trainer.kab -------------------------------------------------------------------------------- /progs/mine-sweeper.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/mine-sweeper.kab -------------------------------------------------------------------------------- /progs/monster-maze.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/monster-maze.kab -------------------------------------------------------------------------------- /progs/paddle.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/paddle.kab -------------------------------------------------------------------------------- /progs/paint.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/paint.kab -------------------------------------------------------------------------------- /progs/particles.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/particles.kab -------------------------------------------------------------------------------- /progs/pendulum.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/pendulum.kab -------------------------------------------------------------------------------- /progs/piano.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/piano.kab -------------------------------------------------------------------------------- /progs/planets.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/planets.kab -------------------------------------------------------------------------------- /progs/png/15-puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/15-puzzle.png -------------------------------------------------------------------------------- /progs/png/1x1-trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/1x1-trainer.png -------------------------------------------------------------------------------- /progs/png/2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/2048.png -------------------------------------------------------------------------------- /progs/png/catch-the-ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/catch-the-ball.png -------------------------------------------------------------------------------- /progs/png/easyide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/easyide.png -------------------------------------------------------------------------------- /progs/png/ice-cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/ice-cream.png -------------------------------------------------------------------------------- /progs/png/ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/ide.png -------------------------------------------------------------------------------- /progs/png/learning-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/learning-clock.png -------------------------------------------------------------------------------- /progs/png/letter-memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/letter-memory.png -------------------------------------------------------------------------------- /progs/png/mastermind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/mastermind.png -------------------------------------------------------------------------------- /progs/png/math-trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/math-trainer.png -------------------------------------------------------------------------------- /progs/png/mine-sweeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/mine-sweeper.png -------------------------------------------------------------------------------- /progs/png/monster-maze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/monster-maze.png -------------------------------------------------------------------------------- /progs/png/paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/paint.png -------------------------------------------------------------------------------- /progs/png/piano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/piano.png -------------------------------------------------------------------------------- /progs/png/reaction-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/reaction-test.png -------------------------------------------------------------------------------- /progs/png/roman-numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/roman-numbers.png -------------------------------------------------------------------------------- /progs/png/size200: -------------------------------------------------------------------------------- 1 | sips -Z 200 $1 2 | -------------------------------------------------------------------------------- /progs/png/snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/snake.png -------------------------------------------------------------------------------- /progs/png/tictactoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/png/tictactoe.png -------------------------------------------------------------------------------- /progs/reaction-test.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/reaction-test.kab -------------------------------------------------------------------------------- /progs/roman-numbers.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/roman-numbers.kab -------------------------------------------------------------------------------- /progs/smpls/100-prisoners.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/100-prisoners.kab -------------------------------------------------------------------------------- /progs/smpls/21.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/21.kab -------------------------------------------------------------------------------- /progs/smpls/_chaos-game.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_chaos-game.kab -------------------------------------------------------------------------------- /progs/smpls/_color_bars.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_color_bars.kab -------------------------------------------------------------------------------- /progs/smpls/_dragon-curve.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_dragon-curve.kab -------------------------------------------------------------------------------- /progs/smpls/_fractal-tree.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_fractal-tree.kab -------------------------------------------------------------------------------- /progs/smpls/_greyscale.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_greyscale.kab -------------------------------------------------------------------------------- /progs/smpls/_koch-curve.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_koch-curve.kab -------------------------------------------------------------------------------- /progs/smpls/_langtons-ant.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_langtons-ant.kab -------------------------------------------------------------------------------- /progs/smpls/_pentagram.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_pentagram.kab -------------------------------------------------------------------------------- /progs/smpls/_plot_coord.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_plot_coord.kab -------------------------------------------------------------------------------- /progs/smpls/_r_maze.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_r_maze.kab -------------------------------------------------------------------------------- /progs/smpls/_r_maze0.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_r_maze0.kab -------------------------------------------------------------------------------- /progs/smpls/_sierpinski.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/_sierpinski.kab -------------------------------------------------------------------------------- /progs/smpls/ast.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/ast.el -------------------------------------------------------------------------------- /progs/smpls/bulls_cows.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/bulls_cows.kab -------------------------------------------------------------------------------- /progs/smpls/calc_e.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/calc_e.el -------------------------------------------------------------------------------- /progs/smpls/cheby.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/cheby.kab -------------------------------------------------------------------------------- /progs/smpls/chin_rt.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/chin_rt.el -------------------------------------------------------------------------------- /progs/smpls/chowla_n.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/chowla_n.kab -------------------------------------------------------------------------------- /progs/smpls/circle_anim.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/circle_anim.el -------------------------------------------------------------------------------- /progs/smpls/coord.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/coord.kab -------------------------------------------------------------------------------- /progs/smpls/demo.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/demo.kab -------------------------------------------------------------------------------- /progs/smpls/etc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/etc.el -------------------------------------------------------------------------------- /progs/smpls/euler.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/euler.kab -------------------------------------------------------------------------------- /progs/smpls/eulersum.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/eulersum.el -------------------------------------------------------------------------------- /progs/smpls/eyes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/eyes.el -------------------------------------------------------------------------------- /progs/smpls/features.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/features.el -------------------------------------------------------------------------------- /progs/smpls/fib.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/fib.el -------------------------------------------------------------------------------- /progs/smpls/forest-fire.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/forest-fire.kab -------------------------------------------------------------------------------- /progs/smpls/ftree2.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/ftree2.kab -------------------------------------------------------------------------------- /progs/smpls/hangman.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/hangman.kab -------------------------------------------------------------------------------- /progs/smpls/hangman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/hangman.png -------------------------------------------------------------------------------- /progs/smpls/horiz_sun.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/horiz_sun.el -------------------------------------------------------------------------------- /progs/smpls/house.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/house.el -------------------------------------------------------------------------------- /progs/smpls/julia-set.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/julia-set.kab -------------------------------------------------------------------------------- /progs/smpls/knapsack.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/knapsack.kab -------------------------------------------------------------------------------- /progs/smpls/longmult.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/longmult.el -------------------------------------------------------------------------------- /progs/smpls/mastermind_w.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/mastermind_w.kab -------------------------------------------------------------------------------- /progs/smpls/mcarlo.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/mcarlo.kab -------------------------------------------------------------------------------- /progs/smpls/md5.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/md5.el -------------------------------------------------------------------------------- /progs/smpls/median.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/median.kab -------------------------------------------------------------------------------- /progs/smpls/mtable.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/mtable.kab -------------------------------------------------------------------------------- /progs/smpls/nqueens.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/nqueens.kab -------------------------------------------------------------------------------- /progs/smpls/progf.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/progf.el -------------------------------------------------------------------------------- /progs/smpls/repl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/repl.sh -------------------------------------------------------------------------------- /progs/smpls/roman.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/roman.el -------------------------------------------------------------------------------- /progs/smpls/rosetta.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/rosetta.kab -------------------------------------------------------------------------------- /progs/smpls/sierp_carp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/sierp_carp.el -------------------------------------------------------------------------------- /progs/smpls/solitare.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/solitare.el -------------------------------------------------------------------------------- /progs/smpls/sortcmp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/sortcmp.el -------------------------------------------------------------------------------- /progs/smpls/spiral_anim.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/spiral_anim.kab -------------------------------------------------------------------------------- /progs/smpls/sudoko.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/sudoko.el -------------------------------------------------------------------------------- /progs/smpls/todo/balls2.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/todo/balls2.kab -------------------------------------------------------------------------------- /progs/smpls/two_bullet.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/two_bullet.el -------------------------------------------------------------------------------- /progs/smpls/urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/smpls/urls.txt -------------------------------------------------------------------------------- /progs/snake.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/snake.kab -------------------------------------------------------------------------------- /progs/spiral.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/spiral.kab -------------------------------------------------------------------------------- /progs/thomas-attractor.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/thomas-attractor.kab -------------------------------------------------------------------------------- /progs/tictactoe.kab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/progs/tictactoe.kab -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/readme.md -------------------------------------------------------------------------------- /run/easy_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/easy_code.js -------------------------------------------------------------------------------- /run/icon.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/icon.el -------------------------------------------------------------------------------- /run/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/icon.png -------------------------------------------------------------------------------- /run/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/icon.svg -------------------------------------------------------------------------------- /run/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/makefile -------------------------------------------------------------------------------- /run/mfst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/mfst.json -------------------------------------------------------------------------------- /run/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/mk -------------------------------------------------------------------------------- /run/mk_games: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/mk_games -------------------------------------------------------------------------------- /run/mk_games_gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/mk_games_gz -------------------------------------------------------------------------------- /run/run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/run.html -------------------------------------------------------------------------------- /run/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/run.js -------------------------------------------------------------------------------- /run/runapps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chkas/easylang/HEAD/run/runapps.txt -------------------------------------------------------------------------------- /vers.txt: -------------------------------------------------------------------------------- 1 | v=2511d 2 | --------------------------------------------------------------------------------