├── .gitignore ├── ChangeLog ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── configure ├── docs ├── css │ ├── basic.css │ ├── julia.css │ ├── screen.css │ └── syntax.css ├── docs │ ├── book │ │ ├── bdt.html │ │ ├── cdt.html │ │ ├── cmdline.html │ │ ├── code │ │ │ ├── awk.sn │ │ │ ├── rbt.sn │ │ │ ├── sample_c_lib.c │ │ │ ├── time_client.sn │ │ │ ├── time_server.sn │ │ │ └── time_server02.sn │ │ ├── conc.html │ │ ├── cref │ │ │ ├── call_fn.html │ │ │ ├── index.html │ │ │ └── slogan_obj_to_char.html │ │ ├── dist.html │ │ ├── elem.html │ │ ├── ex01.html │ │ ├── ffi.html │ │ ├── flow.html │ │ ├── func.html │ │ ├── index.html │ │ ├── intro.html │ │ ├── io.html │ │ ├── lazy.html │ │ ├── p2wip.html │ │ ├── pref │ │ │ ├── index.html │ │ │ ├── pfds.html │ │ │ ├── pfds_heap.html │ │ │ ├── pfds_queue.html │ │ │ ├── pfds_ralist.html │ │ │ ├── pfds_tree.html │ │ │ ├── smc.html │ │ │ └── smc_stm.html │ │ ├── ref │ │ │ ├── abort.html │ │ │ ├── abs.html │ │ │ ├── accumulate.html │ │ │ ├── act.html │ │ │ ├── add.html │ │ │ ├── and.html │ │ │ ├── angle.html │ │ │ ├── append.html │ │ │ ├── apply.html │ │ │ ├── array.html │ │ │ ├── array_append.html │ │ │ ├── array_at.html │ │ │ ├── array_copy.html │ │ │ ├── array_fill.html │ │ │ ├── array_for_each.html │ │ │ ├── array_length.html │ │ │ ├── array_map.html │ │ │ ├── array_ref.html │ │ │ ├── array_ref_set.html │ │ │ ├── array_set.html │ │ │ ├── array_shrink.html │ │ │ ├── array_to_list.html │ │ │ ├── arrays_at.html │ │ │ ├── asin.html │ │ │ ├── assoc.html │ │ │ ├── assp.html │ │ │ ├── assq.html │ │ │ ├── assv.html │ │ │ ├── at.html │ │ │ ├── band.html │ │ │ ├── bif.html │ │ │ ├── bior.html │ │ │ ├── bit_array.html │ │ │ ├── bit_array_at.html │ │ │ ├── bit_array_blit.html │ │ │ ├── bit_array_clear.html │ │ │ ├── bit_array_clear_all.html │ │ │ ├── bit_array_is_all_set.html │ │ │ ├── bit_array_is_any_set.html │ │ │ ├── bit_array_is_eq.html │ │ │ ├── bit_array_is_set.html │ │ │ ├── bit_array_length.html │ │ │ ├── bit_array_set.html │ │ │ ├── bit_array_set_all.html │ │ │ ├── bit_array_to_list.html │ │ │ ├── bit_array_to_string.html │ │ │ ├── bit_arrays_concat.html │ │ │ ├── bit_count.html │ │ │ ├── bits_reader.html │ │ │ ├── bits_reader_align.html │ │ │ ├── bits_writer.html │ │ │ ├── bits_writer_flush.html │ │ │ ├── blength.html │ │ │ ├── bnot.html │ │ │ ├── bshift.html │ │ │ ├── bxor.html │ │ │ ├── byte_array_reader.html │ │ │ ├── byte_array_writer.html │ │ │ ├── c_struct_get.html │ │ │ ├── c_struct_instance.html │ │ │ ├── c_struct_name.html │ │ │ ├── call_with_stream.html │ │ │ ├── call_with_values.html │ │ │ ├── callcc.html │ │ │ ├── car.html │ │ │ ├── cassign.html │ │ │ ├── cblock.html │ │ │ ├── ccall.html │ │ │ ├── cdr.html │ │ │ ├── ceiling.html │ │ │ ├── cfunction.html │ │ │ ├── char_downcase.html │ │ │ ├── char_is_alphabetic.html │ │ │ ├── char_is_eq.html │ │ │ ├── char_is_lower_case.html │ │ │ ├── char_is_numeric.html │ │ │ ├── char_is_upper_case.html │ │ │ ├── char_is_whitespace.html │ │ │ ├── char_to_integer.html │ │ │ ├── char_upcase.html │ │ │ ├── cif.html │ │ │ ├── clet.html │ │ │ ├── cletbparser.html │ │ │ ├── clets.html │ │ │ ├── close_reader.html │ │ │ ├── close_stream.html │ │ │ ├── close_writer.html │ │ │ ├── cmkbparser.html │ │ │ ├── command_line.html │ │ │ ├── command_line_user_args.html │ │ │ ├── compare.html │ │ │ ├── compile.html │ │ │ ├── compiler.html │ │ │ ├── complement.html │ │ │ ├── compose.html │ │ │ ├── contains.html │ │ │ ├── copy_bit_field.html │ │ │ ├── copy_file.html │ │ │ ├── copy_list.html │ │ │ ├── count.html │ │ │ ├── cpu_time.html │ │ │ ├── create_directory.html │ │ │ ├── create_link.html │ │ │ ├── current_directory.html │ │ │ ├── current_exception_handler.html │ │ │ ├── current_reader.html │ │ │ ├── dec.html │ │ │ ├── default_random_source.html │ │ │ ├── delete_directory.html │ │ │ ├── delete_file.html │ │ │ ├── denominator.html │ │ │ ├── disable_asserts.html │ │ │ ├── disable_function_contracts.html │ │ │ ├── display.html │ │ │ ├── div.html │ │ │ ├── do_times.html │ │ │ ├── drop.html │ │ │ ├── drop_while.html │ │ │ ├── dynamic_wind.html │ │ │ ├── enable_function_contracts.html │ │ │ ├── enumerate.html │ │ │ ├── eof_object.html │ │ │ ├── error.html │ │ │ ├── error_args.html │ │ │ ├── error_message.html │ │ │ ├── eval.html │ │ │ ├── exact.html │ │ │ ├── exists.html │ │ │ ├── exit.html │ │ │ ├── exp.html │ │ │ ├── expression.html │ │ │ ├── expt.html │ │ │ ├── f32array.html │ │ │ ├── f32array_append.html │ │ │ ├── f32array_at.html │ │ │ ├── f32array_copy.html │ │ │ ├── f32array_fill.html │ │ │ ├── f32array_length.html │ │ │ ├── f32array_set.html │ │ │ ├── f32array_shrink.html │ │ │ ├── f32array_to_list.html │ │ │ ├── ffi_call_void.html │ │ │ ├── ffi_close.html │ │ │ ├── ffi_fn.html │ │ │ ├── ffi_open.html │ │ │ ├── file_attributes.html │ │ │ ├── file_exists.html │ │ │ ├── file_info.html │ │ │ ├── file_info_attributes.html │ │ │ ├── file_reader.html │ │ │ ├── file_stream.html │ │ │ ├── file_writer.html │ │ │ ├── filter.html │ │ │ ├── find.html │ │ │ ├── first.html │ │ │ ├── first_bit_set.html │ │ │ ├── fixnum_to_flonum.html │ │ │ ├── fixnum_width.html │ │ │ ├── fl_is_eq.html │ │ │ ├── fl_is_even.html │ │ │ ├── fl_is_finite.html │ │ │ ├── fl_is_integer.html │ │ │ ├── fl_is_zero.html │ │ │ ├── flabs.html │ │ │ ├── flacos.html │ │ │ ├── fladd.html │ │ │ ├── flceiling.html │ │ │ ├── fldenominator.html │ │ │ ├── flexp.html │ │ │ ├── flexpt.html │ │ │ ├── flfloor.html │ │ │ ├── fllog.html │ │ │ ├── fllogb.html │ │ │ ├── flmax.html │ │ │ ├── floor.html │ │ │ ├── flround.html │ │ │ ├── flsqrt.html │ │ │ ├── fltruncate.html │ │ │ ├── flush_writer.html │ │ │ ├── fold.html │ │ │ ├── fold_left.html │ │ │ ├── fold_right.html │ │ │ ├── for_all.html │ │ │ ├── for_each.html │ │ │ ├── force.html │ │ │ ├── fx_is_eq.html │ │ │ ├── fx_is_even.html │ │ │ ├── fx_is_negative.html │ │ │ ├── fx_is_odd.html │ │ │ ├── fx_is_positive.html │ │ │ ├── fx_is_zero.html │ │ │ ├── fxadd.html │ │ │ ├── fxand.html │ │ │ ├── fxbit_count.html │ │ │ ├── fxbit_is_set.html │ │ │ ├── fxfirst_bit_set.html │ │ │ ├── fxif.html │ │ │ ├── fxlength.html │ │ │ ├── fxmax.html │ │ │ ├── fxshift.html │ │ │ ├── gcd.html │ │ │ ├── gensym.html │ │ │ ├── get.html │ │ │ ├── get_output_bytes.html │ │ │ ├── get_output_string.html │ │ │ ├── get_token.html │ │ │ ├── getenv.html │ │ │ ├── greatest_fixnum.html │ │ │ ├── hashtable_at.html │ │ │ ├── hashtable_contains.html │ │ │ ├── hashtable_copy.html │ │ │ ├── hashtable_entries.html │ │ │ ├── hashtable_for_each.html │ │ │ ├── hashtable_keys.html │ │ │ ├── hashtable_set.html │ │ │ ├── hashtable_size.html │ │ │ ├── hashtable_update.html │ │ │ ├── hashtable_values.html │ │ │ ├── head.html │ │ │ ├── host_info.html │ │ │ ├── host_info_name.html │ │ │ ├── host_name.html │ │ │ ├── identity.html │ │ │ ├── inc.html │ │ │ ├── index.html │ │ │ ├── inexact.html │ │ │ ├── inf.html │ │ │ ├── init_package.html │ │ │ ├── install_package.html │ │ │ ├── integer_to_char.html │ │ │ ├── is_all_bits_set.html │ │ │ ├── is_any_bits_set.html │ │ │ ├── is_array.html │ │ │ ├── is_bit_array.html │ │ │ ├── is_bit_set.html │ │ │ ├── is_boolean.html │ │ │ ├── is_char.html │ │ │ ├── is_complex.html │ │ │ ├── is_empty.html │ │ │ ├── is_eof_object.html │ │ │ ├── is_eq.html │ │ │ ├── is_equal.html │ │ │ ├── is_eqv.html │ │ │ ├── is_error.html │ │ │ ├── is_even.html │ │ │ ├── is_exact.html │ │ │ ├── is_f32array.html │ │ │ ├── is_false.html │ │ │ ├── is_file_info.html │ │ │ ├── is_finite.html │ │ │ ├── is_fixnum.html │ │ │ ├── is_flonum.html │ │ │ ├── is_function.html │ │ │ ├── is_hashtable.html │ │ │ ├── is_host_info.html │ │ │ ├── is_inexact.html │ │ │ ├── is_infinite.html │ │ │ ├── is_integer.html │ │ │ ├── is_iterator.html │ │ │ ├── is_keyword_token.html │ │ │ ├── is_list.html │ │ │ ├── is_lpair.html │ │ │ ├── is_monitor.html │ │ │ ├── is_mutex.html │ │ │ ├── is_nan.html │ │ │ ├── is_negative.html │ │ │ ├── is_noncontinuable_exception.html │ │ │ ├── is_number.html │ │ │ ├── is_odd.html │ │ │ ├── is_pair.html │ │ │ ├── is_positive.html │ │ │ ├── is_prime.html │ │ │ ├── is_random_source.html │ │ │ ├── is_rational.html │ │ │ ├── is_reader.html │ │ │ ├── is_real.html │ │ │ ├── is_set.html │ │ │ ├── is_set_member.html │ │ │ ├── is_special_token.html │ │ │ ├── is_stream.html │ │ │ ├── is_string.html │ │ │ ├── is_subset.html │ │ │ ├── is_superset.html │ │ │ ├── is_symbol.html │ │ │ ├── is_task.html │ │ │ ├── is_task_group.html │ │ │ ├── is_true.html │ │ │ ├── is_u8array.html │ │ │ ├── is_valid_identifier.html │ │ │ ├── is_void.html │ │ │ ├── is_writer.html │ │ │ ├── is_zero.html │ │ │ ├── iterator.html │ │ │ ├── lcm.html │ │ │ ├── least_fixnum.html │ │ │ ├── length.html │ │ │ ├── link.html │ │ │ ├── list.html │ │ │ ├── list_directory.html │ │ │ ├── list_of.html │ │ │ ├── list_set.html │ │ │ ├── list_tail.html │ │ │ ├── list_to_array.html │ │ │ ├── list_to_bit_array.html │ │ │ ├── list_to_f32array.html │ │ │ ├── list_to_string.html │ │ │ ├── list_to_u8array.html │ │ │ ├── load.html │ │ │ ├── load_package.html │ │ │ ├── log.html │ │ │ ├── logb.html │ │ │ ├── make_array.html │ │ │ ├── make_bit_array.html │ │ │ ├── make_eq_hashtable.html │ │ │ ├── make_equal_hashtable.html │ │ │ ├── make_eqv_hashtable.html │ │ │ ├── make_f32array.html │ │ │ ├── make_hashtable.html │ │ │ ├── make_set.html │ │ │ ├── make_string.html │ │ │ ├── make_u8array.html │ │ │ ├── map.html │ │ │ ├── mapfn.html │ │ │ ├── max.html │ │ │ ├── member.html │ │ │ ├── memp.html │ │ │ ├── memq.html │ │ │ ├── memv.html │ │ │ ├── mergesort.html │ │ │ ├── min.html │ │ │ ├── mod.html │ │ │ ├── modulo.html │ │ │ ├── monitor.html │ │ │ ├── monitor_broadcast.html │ │ │ ├── monitor_data.html │ │ │ ├── monitor_name.html │ │ │ ├── monitor_notify.html │ │ │ ├── monitor_set_data.html │ │ │ ├── mult.html │ │ │ ├── mutex.html │ │ │ ├── mutex_data.html │ │ │ ├── mutex_lock.html │ │ │ ├── mutex_name.html │ │ │ ├── mutex_set_data.html │ │ │ ├── mutex_state.html │ │ │ ├── mutex_unlock.html │ │ │ ├── nan.html │ │ │ ├── newline.html │ │ │ ├── next.html │ │ │ ├── ninf.html │ │ │ ├── noncontinuable_exception_reason.html │ │ │ ├── not.html │ │ │ ├── now.html │ │ │ ├── now_seconds.html │ │ │ ├── now_utc.html │ │ │ ├── nth.html │ │ │ ├── nth_tail.html │ │ │ ├── number_is_eq.html │ │ │ ├── number_to_string.html │ │ │ ├── numerator.html │ │ │ ├── nzero.html │ │ │ ├── object_to_u8array.html │ │ │ ├── or.html │ │ │ ├── os_name.html │ │ │ ├── pair.html │ │ │ ├── partial.html │ │ │ ├── partition.html │ │ │ ├── path_directory.html │ │ │ ├── path_expand.html │ │ │ ├── path_normalize.html │ │ │ ├── peek_char.html │ │ │ ├── peek_token.html │ │ │ ├── pipe_process_pid.html │ │ │ ├── pipe_process_status.html │ │ │ ├── pipe_reader.html │ │ │ ├── pointer_to_c_struct.html │ │ │ ├── polar.html │ │ │ ├── position.html │ │ │ ├── println.html │ │ │ ├── process.html │ │ │ ├── process_close.html │ │ │ ├── process_receive.html │ │ │ ├── process_send.html │ │ │ ├── process_times.html │ │ │ ├── quo.html │ │ │ ├── quotient.html │ │ │ ├── raise.html │ │ │ ├── random_byte_array.html │ │ │ ├── random_integer.html │ │ │ ├── random_real.html │ │ │ ├── random_source.html │ │ │ ├── random_source_for_integers.html │ │ │ ├── random_source_randomize.html │ │ │ ├── random_source_set_state.html │ │ │ ├── random_source_state.html │ │ │ ├── range.html │ │ │ ├── rationalize.html │ │ │ ├── rbind.html │ │ │ ├── react.html │ │ │ ├── read.html │ │ │ ├── read_all.html │ │ │ ├── read_all_bytes.html │ │ │ ├── read_all_chars.html │ │ │ ├── read_bit.html │ │ │ ├── read_bits.html │ │ │ ├── read_byte.html │ │ │ ├── read_char.html │ │ │ ├── read_line.html │ │ │ ├── read_n_bytes.html │ │ │ ├── read_n_chars.html │ │ │ ├── read_slogan_root.html │ │ │ ├── reader_timeout.html │ │ │ ├── real_part.html │ │ │ ├── real_time.html │ │ │ ├── realize.html │ │ │ ├── rectangular.html │ │ │ ├── ref.html │ │ │ ├── ref_set.html │ │ │ ├── reload.html │ │ │ ├── rem.html │ │ │ ├── remainder.html │ │ │ ├── remove.html │ │ │ ├── remp.html │ │ │ ├── rename_file.html │ │ │ ├── rest.html │ │ │ ├── reverse.html │ │ │ ├── reverse_bit_field.html │ │ │ ├── rget.html │ │ │ ├── root_task.html │ │ │ ├── rotate_bit_field.html │ │ │ ├── round.html │ │ │ ├── rvar.html │ │ │ ├── self.html │ │ │ ├── set.html │ │ │ ├── set_current_exception_handler.html │ │ │ ├── set_difference.html │ │ │ ├── set_head.html │ │ │ ├── set_intersection.html │ │ │ ├── set_length.html │ │ │ ├── set_process_base_port.html │ │ │ ├── set_stream_position.html │ │ │ ├── set_tail.html │ │ │ ├── set_to_list.html │ │ │ ├── set_union.html │ │ │ ├── setenv.html │ │ │ ├── shell_command.html │ │ │ ├── show.html │ │ │ ├── showln.html │ │ │ ├── sin.html │ │ │ ├── slogan.html │ │ │ ├── slogan_root.html │ │ │ ├── sort.html │ │ │ ├── special_token_to_string.html │ │ │ ├── sqrt.html │ │ │ ├── statement.html │ │ │ ├── stream_has_position.html │ │ │ ├── stream_position.html │ │ │ ├── stream_tokenizer.html │ │ │ ├── string.html │ │ │ ├── string_append.html │ │ │ ├── string_at.html │ │ │ ├── string_copy.html │ │ │ ├── string_downcase.html │ │ │ ├── string_ends_with.html │ │ │ ├── string_fill.html │ │ │ ├── string_for_each.html │ │ │ ├── string_hash.html │ │ │ ├── string_index_of.html │ │ │ ├── string_is_eq.html │ │ │ ├── string_length.html │ │ │ ├── string_map.html │ │ │ ├── string_reader.html │ │ │ ├── string_replace_all.html │ │ │ ├── string_set.html │ │ │ ├── string_split.html │ │ │ ├── string_titlecase.html │ │ │ ├── string_to_bit_array.html │ │ │ ├── string_to_list.html │ │ │ ├── string_to_number.html │ │ │ ├── string_to_symbol.html │ │ │ ├── string_to_time.html │ │ │ ├── string_to_u8array.html │ │ │ ├── string_trim.html │ │ │ ├── string_upcase.html │ │ │ ├── string_writer.html │ │ │ ├── strings_at.html │ │ │ ├── strings_join.html │ │ │ ├── sub.html │ │ │ ├── subarray.html │ │ │ ├── subarray_fill.html │ │ │ ├── subarray_move.html │ │ │ ├── subbitarray.html │ │ │ ├── subf32array.html │ │ │ ├── subf32array_fill.html │ │ │ ├── subf32array_move.html │ │ │ ├── sublist.html │ │ │ ├── substring.html │ │ │ ├── subu8array.html │ │ │ ├── subu8array_fill.html │ │ │ ├── subu8array_move.html │ │ │ ├── symbol_to_string.html │ │ │ ├── tail.html │ │ │ ├── take.html │ │ │ ├── take_while.html │ │ │ ├── task.html │ │ │ ├── task_base_priority.html │ │ │ ├── task_data.html │ │ │ ├── task_group.html │ │ │ ├── task_group_name.html │ │ │ ├── task_group_parent.html │ │ │ ├── task_group_resume.html │ │ │ ├── task_group_state.html │ │ │ ├── task_group_suspend.html │ │ │ ├── task_group_terminate.html │ │ │ ├── task_join.html │ │ │ ├── task_messages_next.html │ │ │ ├── task_messages_rewind.html │ │ │ ├── task_name.html │ │ │ ├── task_priority_boost.html │ │ │ ├── task_quantum.html │ │ │ ├── task_receive.html │ │ │ ├── task_resume.html │ │ │ ├── task_run.html │ │ │ ├── task_send.html │ │ │ ├── task_set_base_priority.html │ │ │ ├── task_set_data.html │ │ │ ├── task_set_priority_boost.html │ │ │ ├── task_set_quantum.html │ │ │ ├── task_sleep.html │ │ │ ├── task_state.html │ │ │ ├── task_state_is_xxx.html │ │ │ ├── task_suspend.html │ │ │ ├── task_terminate.html │ │ │ ├── task_yield.html │ │ │ ├── tcp_client_stream.html │ │ │ ├── tcp_server_stream.html │ │ │ ├── time.html │ │ │ ├── time_to_string.html │ │ │ ├── to_string.html │ │ │ ├── trace.html │ │ │ ├── transcoder.html │ │ │ ├── transcoder_xxx.html │ │ │ ├── truncate.html │ │ │ ├── u8array.html │ │ │ ├── u8array_append.html │ │ │ ├── u8array_at.html │ │ │ ├── u8array_copy.html │ │ │ ├── u8array_fill.html │ │ │ ├── u8array_length.html │ │ │ ├── u8array_set.html │ │ │ ├── u8array_shrink.html │ │ │ ├── u8array_to_bit_array.html │ │ │ ├── u8array_to_list.html │ │ │ ├── u8array_to_object.html │ │ │ ├── u8array_to_string.html │ │ │ ├── uninstall_package.html │ │ │ ├── until.html │ │ │ ├── untrace.html │ │ │ ├── unzip.html │ │ │ ├── values.html │ │ │ ├── void.html │ │ │ ├── write.html │ │ │ ├── write_bit.html │ │ │ ├── write_bits.html │ │ │ ├── write_byte.html │ │ │ ├── write_bytes.html │ │ │ ├── write_char.html │ │ │ ├── write_chars.html │ │ │ ├── write_n_bytes.html │ │ │ ├── write_n_chars.html │ │ │ ├── zero.html │ │ │ ├── zip.html │ │ │ └── zip_with.html │ │ ├── state.html │ │ ├── style.css │ │ ├── syntax.html │ │ └── tut.html │ ├── design.html │ ├── index.html │ ├── pm │ │ ├── bd.html │ │ ├── except.html │ │ ├── ffi.html │ │ ├── gf.html │ │ ├── index.html │ │ ├── intro.html │ │ ├── io.html │ │ ├── mod.html │ │ ├── mt.html │ │ ├── pack.html │ │ ├── pc.html │ │ ├── rec.html │ │ ├── si.html │ │ └── syntax.html │ └── tut │ │ ├── control.html │ │ ├── par.html │ │ ├── par_code.tar.gz │ │ └── pat.html ├── downloads │ └── index.html ├── gs.html ├── images │ └── slogan.png └── index.html ├── emacs └── slogan-mode.el ├── example ├── algo │ ├── search.sn │ ├── sort.sn │ └── sort_test.sn ├── binstr.sn ├── caesar_cipher.sn ├── compress.sn ├── data_mining │ └── similarity.sn ├── ffi │ ├── README.md │ ├── clib.c │ └── clib.sn ├── file_server.sn ├── filter_prime.sn ├── future.sn ├── graph.sn ├── guess.sn ├── matrix.sn ├── nondet.sn ├── objects.sn ├── option.sn ├── packages │ ├── media │ │ ├── README.md │ │ ├── build │ │ ├── event.sn │ │ ├── images │ │ │ └── hello.bmp │ │ ├── init.sn │ │ ├── libsrc │ │ │ ├── event.c │ │ │ ├── event.h │ │ │ └── wrapper.c │ │ └── sample │ │ │ ├── bouncing_ball.sn │ │ │ ├── draw_lines.sn │ │ │ ├── mouse_move.sn │ │ │ ├── rnd.sn │ │ │ ├── triangles.sn │ │ │ ├── vector.sn │ │ │ └── walker.sn │ ├── simple │ │ ├── build.sn │ │ ├── init.sn │ │ └── src │ │ │ └── core.sn │ └── sqlite │ │ ├── README.md │ │ ├── build │ │ ├── init.sn │ │ └── src │ │ ├── sqlite3.c │ │ ├── sqlite3.h │ │ └── wrapper.c ├── perm.sn ├── pq.sn ├── propagators.sn ├── regex.sn └── votes.sn ├── install ├── pkgsrc ├── algo │ ├── README.md │ ├── src │ │ ├── core.sn │ │ ├── graph.sn │ │ ├── pq.sn │ │ ├── q.sn │ │ ├── sorts.sn │ │ ├── trie.sn │ │ └── uf.sn │ └── test │ │ ├── test_all.sn │ │ ├── test_graph.sn │ │ ├── test_pq.sn │ │ ├── test_q.sn │ │ ├── test_sorts.sn │ │ ├── test_trie.sn │ │ └── test_uf.sn ├── pfds │ ├── build.sn │ ├── init.sn │ ├── src │ │ ├── core.sn │ │ ├── heap.sn │ │ ├── queue.sn │ │ ├── ralist.sn │ │ └── rbt.sn │ └── test │ │ └── pfds.sn └── smc │ ├── build.sn │ ├── init.sn │ ├── src │ ├── core.sn │ └── stm.sn │ └── test │ └── stm.sn ├── platform ├── gsc │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── INSTALL.txt │ ├── LGPL.txt │ ├── LICENSE-2.0.txt │ ├── README │ ├── README.md │ ├── appveyor.yml │ ├── bin │ │ ├── gambcomp-C.bat.windows │ │ ├── gambcomp-C.bat.windows.in │ │ ├── gambcomp-C.unix │ │ ├── gambcomp-C.unix.in │ │ ├── gambdoc.bat.windows │ │ ├── gambdoc.bat.windows.in │ │ ├── gambdoc.unix │ │ ├── gambdoc.unix.in │ │ └── makefile.in │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── GambitREPL │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Default-568h@2x.png │ │ │ ├── GambitREPL-1024.png │ │ │ ├── GambitREPL-120.png │ │ │ ├── GambitREPL-152.png │ │ │ ├── GambitREPL-180.png │ │ │ ├── GambitREPL-29.png │ │ │ ├── GambitREPL-40.png │ │ │ ├── GambitREPL-512.png │ │ │ ├── GambitREPL-57.png │ │ │ ├── GambitREPL-72.png │ │ │ ├── GambitREPL-76.png │ │ │ ├── GambitREPL-87.png │ │ │ ├── GambitREPL-icon-unscaled.key │ │ │ ├── GambitREPL.entitlements │ │ │ ├── GambitREPL.plist │ │ │ ├── GambitREPL.storyboard │ │ │ ├── GambitREPL.xcodeproj.tgz │ │ │ ├── ITView.h │ │ │ ├── ITView.m │ │ │ ├── IView.h │ │ │ ├── IView.m │ │ │ ├── KOCreateButton.h │ │ │ ├── KOCreateButton.m │ │ │ ├── KOKeyboardRow.h │ │ │ ├── KOKeyboardRow.m │ │ │ ├── KOProtocol.h │ │ │ ├── KOSwipeButton.h │ │ │ ├── KOSwipeButton.m │ │ │ ├── NotEmacs-1024.png │ │ │ ├── NotEmacs-120.png │ │ │ ├── NotEmacs-152.png │ │ │ ├── NotEmacs-180.png │ │ │ ├── NotEmacs-29.png │ │ │ ├── NotEmacs-40.png │ │ │ ├── NotEmacs-512.png │ │ │ ├── NotEmacs-57.png │ │ │ ├── NotEmacs-72.png │ │ │ ├── NotEmacs-76.png │ │ │ ├── NotEmacs-87.png │ │ │ ├── NotEmacs-icon-unscaled.key │ │ │ ├── NotEmacs.entitlements │ │ │ ├── NotEmacs.plist │ │ │ ├── NotEmacs.storyboard │ │ │ ├── Prefix.pch │ │ │ ├── README │ │ │ ├── TView.h │ │ │ ├── TView.m │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── WView.h │ │ │ ├── WView.m │ │ │ ├── button-abc.png │ │ │ ├── button-cancel.png │ │ │ ├── button-compass.png │ │ │ ├── button-empty.png │ │ │ ├── button-left-left.png │ │ │ ├── button-left.png │ │ │ ├── button-question.png │ │ │ ├── button-right-right.png │ │ │ ├── button-right.png │ │ │ ├── button-up-arrow.png │ │ │ ├── button-up.png │ │ │ ├── digest#.scm │ │ │ ├── digest.scm │ │ │ ├── edit.png │ │ │ ├── emacs#.scm │ │ │ ├── emacs.scm │ │ │ ├── emacs.tgz │ │ │ ├── f1.png │ │ │ ├── f10.png │ │ │ ├── f11.png │ │ │ ├── f12.png │ │ │ ├── f2.png │ │ │ ├── f3.png │ │ │ ├── f4.png │ │ │ ├── f5.png │ │ │ ├── f6.png │ │ │ ├── f7.png │ │ │ ├── f8.png │ │ │ ├── f9.png │ │ │ ├── gambit.html │ │ │ ├── genport#.scm │ │ │ ├── genport.scm │ │ │ ├── grd.scm │ │ │ ├── help#.scm │ │ │ ├── help.html │ │ │ ├── help.scm │ │ │ ├── html#.scm │ │ │ ├── html.scm │ │ │ ├── intf#.scm │ │ │ ├── intf.h │ │ │ ├── intf.scm │ │ │ ├── json#.scm │ │ │ ├── json.scm │ │ │ ├── main.m │ │ │ ├── make-appstore-screenshots │ │ │ ├── make-keys │ │ │ ├── make-scaled-icons │ │ │ ├── makefile.in │ │ │ ├── note.png │ │ │ ├── program.scm │ │ │ ├── r5rs.html │ │ │ ├── r5rs.pdf │ │ │ ├── repl-server#.scm │ │ │ ├── repl-server.scm │ │ │ ├── repo#.scm │ │ │ ├── repo.scm │ │ │ ├── rocket.png │ │ │ ├── script#.scm │ │ │ ├── script.scm │ │ │ ├── stop.png │ │ │ ├── tar#.scm │ │ │ ├── tar.scm │ │ │ ├── url#.scm │ │ │ ├── url.scm │ │ │ ├── user.png │ │ │ ├── wiki#.scm │ │ │ ├── wiki.scm │ │ │ ├── zlib#.scm │ │ │ └── zlib.scm │ │ ├── README │ │ ├── makefile.in │ │ └── xactlog │ │ │ ├── makefile.in │ │ │ └── xactlog.c │ ├── doc │ │ ├── bench.scm │ │ ├── checkdoc.scm │ │ ├── gambini.scm │ │ ├── gambit.txi │ │ ├── gsi.1 │ │ ├── h.scm │ │ ├── m1.c │ │ ├── m2.scm │ │ ├── m3.scm │ │ ├── m4.scm │ │ ├── m5.scm │ │ ├── m6.scm │ │ ├── m7.scm │ │ ├── makefile.in │ │ ├── square.scm │ │ ├── test1.scm │ │ ├── test2.scm │ │ ├── test3.scm │ │ ├── texi2html │ │ ├── texinfo.tex │ │ ├── w.six │ │ ├── x.c │ │ └── x.h │ ├── examples │ │ ├── README │ │ ├── Xlib-simple │ │ │ ├── README │ │ │ ├── Xlib#.scm │ │ │ ├── Xlib.scm │ │ │ ├── bounce.scm │ │ │ └── makefile.in │ │ ├── distr-comp │ │ │ ├── README │ │ │ ├── dc#.scm │ │ │ ├── dc.scm │ │ │ ├── distr-comp.scm │ │ │ └── makefile.in │ │ ├── makefile.in │ │ ├── misc │ │ │ ├── README │ │ │ ├── makefile.in │ │ │ └── signals.scm │ │ ├── pi │ │ │ ├── README │ │ │ ├── makefile.in │ │ │ └── pi.scm │ │ ├── pthread │ │ │ ├── README │ │ │ ├── makefile.in │ │ │ ├── mylib.h │ │ │ ├── mylib.scm │ │ │ └── pthread.c │ │ ├── ring │ │ │ ├── README │ │ │ ├── makefile.in │ │ │ └── ring.scm │ │ ├── tcltk │ │ │ ├── README │ │ │ ├── fig16-1.scm │ │ │ ├── fig16-10.scm │ │ │ ├── fig16-11.scm │ │ │ ├── fig16-12.scm │ │ │ ├── fig16-13.scm │ │ │ ├── fig16-14.scm │ │ │ ├── fig16-15.scm │ │ │ ├── fig16-16.scm │ │ │ ├── fig16-17.scm │ │ │ ├── fig16-2.scm │ │ │ ├── fig16-3.scm │ │ │ ├── fig16-6.scm │ │ │ ├── fig16-7.scm │ │ │ ├── fig16-8.scm │ │ │ ├── fig16-9.scm │ │ │ ├── fig17-9.scm │ │ │ ├── makefile.in │ │ │ ├── tcltk#.scm │ │ │ ├── tcltk.scm │ │ │ └── test.scm │ │ ├── web-repl │ │ │ ├── README │ │ │ ├── Repl.java │ │ │ ├── index.html │ │ │ ├── makefile.in │ │ │ └── web-repl.scm │ │ └── web-server │ │ │ ├── README │ │ │ ├── base64#.scm │ │ │ ├── base64.scm │ │ │ ├── html#.scm │ │ │ ├── html.scm │ │ │ ├── http#.scm │ │ │ ├── http.scm │ │ │ ├── makefile.in │ │ │ └── web-server.scm │ ├── gsc-boot.bat.windows │ ├── gsc-boot.unix │ ├── gsc │ │ ├── _asm#.scm │ │ ├── _asm.c │ │ ├── _asm.scm │ │ ├── _assert#.scm │ │ ├── _assert.c │ │ ├── _assert.scm │ │ ├── _back.c │ │ ├── _back.scm │ │ ├── _codegen#.scm │ │ ├── _codegen.c │ │ ├── _codegen.scm │ │ ├── _env.c │ │ ├── _env.scm │ │ ├── _envadt.scm │ │ ├── _front.c │ │ ├── _front.scm │ │ ├── _gambcgsc.c │ │ ├── _gambitgsc.c │ │ ├── _gsc.c │ │ ├── _gsc.scm │ │ ├── _gsc_.c │ │ ├── _gscdebug.scm │ │ ├── _gsclib.c │ │ ├── _gsclib.scm │ │ ├── _gvm.c │ │ ├── _gvm.scm │ │ ├── _gvmadt.scm │ │ ├── _host.c │ │ ├── _host.scm │ │ ├── _parms.c │ │ ├── _parms.scm │ │ ├── _prims.c │ │ ├── _prims.scm │ │ ├── _ptree1.c │ │ ├── _ptree1.scm │ │ ├── _ptree2.c │ │ ├── _ptree2.scm │ │ ├── _ptreeadt.scm │ │ ├── _source.c │ │ ├── _source.scm │ │ ├── _sourceadt.scm │ │ ├── _t-c-1.c │ │ ├── _t-c-1.scm │ │ ├── _t-c-2.c │ │ ├── _t-c-2.scm │ │ ├── _t-c-3.c │ │ ├── _t-c-3.scm │ │ ├── _t-univ-1.c │ │ ├── _t-univ-1.scm │ │ ├── _t-univ-2.c │ │ ├── _t-univ-2.scm │ │ ├── _t-univ-3.c │ │ ├── _t-univ-3.scm │ │ ├── _t-univ-4.c │ │ ├── _t-univ-4.scm │ │ ├── _t-x86.scm │ │ ├── _univadt.scm │ │ ├── _utils.c │ │ ├── _utils.scm │ │ ├── _x86#.scm │ │ ├── _x86.c │ │ ├── _x86.scm │ │ ├── fixnum.scm │ │ ├── generic.scm │ │ ├── igsc.scm │ │ ├── makefile.in │ │ ├── runtests.scm │ │ └── tests │ │ │ ├── 00-fixnum │ │ │ ├── README │ │ │ ├── funcall.scm │ │ │ ├── funcall2.scm │ │ │ ├── if.scm │ │ │ └── println.scm │ │ │ ├── 01-boolean │ │ │ ├── README │ │ │ ├── and.scm │ │ │ ├── boolean.scm │ │ │ ├── if.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ └── println.scm │ │ │ ├── 02-string │ │ │ ├── README │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── println.scm │ │ │ └── string.scm │ │ │ ├── 03-fxprim │ │ │ ├── README │ │ │ ├── fixnum.scm │ │ │ ├── fxabs.scm │ │ │ ├── fxabsp.scm │ │ │ ├── fxadd.scm │ │ │ ├── fxaddp.scm │ │ │ ├── fxand.scm │ │ │ ├── fxas.scm │ │ │ ├── fxasl.scm │ │ │ ├── fxaslp.scm │ │ │ ├── fxasp.scm │ │ │ ├── fxasr.scm │ │ │ ├── fxasrp.scm │ │ │ ├── fxbitcount.scm │ │ │ ├── fxbitsetp.scm │ │ │ ├── fxcmp.scm │ │ │ ├── fxeq.scm │ │ │ ├── fxeven.scm │ │ │ ├── fxfbs.scm │ │ │ ├── fxfib.scm │ │ │ ├── fxge.scm │ │ │ ├── fxgt.scm │ │ │ ├── fxif.scm │ │ │ ├── fxior.scm │ │ │ ├── fxle.scm │ │ │ ├── fxlength.scm │ │ │ ├── fxlt.scm │ │ │ ├── fxmax.scm │ │ │ ├── fxmin.scm │ │ │ ├── fxmodulo.scm │ │ │ ├── fxmul.scm │ │ │ ├── fxmulp.scm │ │ │ ├── fxnegative.scm │ │ │ ├── fxnot.scm │ │ │ ├── fxodd.scm │ │ │ ├── fxpositive.scm │ │ │ ├── fxquotient.scm │ │ │ ├── fxremainder.scm │ │ │ ├── fxsquare.scm │ │ │ ├── fxsquarep.scm │ │ │ ├── fxsub.scm │ │ │ ├── fxsubp.scm │ │ │ ├── fxwrapabs.scm │ │ │ ├── fxwrapadd.scm │ │ │ ├── fxwrapas.scm │ │ │ ├── fxwrapasl.scm │ │ │ ├── fxwraplsr.scm │ │ │ ├── fxwraplsrp.scm │ │ │ ├── fxwrapmul.scm │ │ │ ├── fxwrapquotient.scm │ │ │ ├── fxwrapsquare.scm │ │ │ ├── fxwrapsub.scm │ │ │ ├── fxxor.scm │ │ │ └── fxzero.scm │ │ │ ├── 04-pair │ │ │ ├── and.scm │ │ │ ├── cons.scm │ │ │ ├── cxxxxr.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── list.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── pair.scm │ │ │ ├── println.scm │ │ │ └── setcarcdr.scm │ │ │ ├── 06-strprim │ │ │ ├── README │ │ │ ├── makestr.scm │ │ │ ├── string.scm │ │ │ ├── strlen.scm │ │ │ ├── strref.scm │ │ │ ├── strset.scm │ │ │ └── strshrink.scm │ │ │ ├── 07-flonum │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ └── println.scm │ │ │ ├── 08-flprim │ │ │ ├── flabs.scm │ │ │ ├── flacos.scm │ │ │ ├── fladd.scm │ │ │ ├── flasin.scm │ │ │ ├── flatan.scm │ │ │ ├── flceiling.scm │ │ │ ├── flcmp.scm │ │ │ ├── flconv.scm │ │ │ ├── flcos.scm │ │ │ ├── fldiv.scm │ │ │ ├── fleq.scm │ │ │ ├── flexp.scm │ │ │ ├── flexpt.scm │ │ │ ├── flfib.scm │ │ │ ├── flfinite.scm │ │ │ ├── flfloor.scm │ │ │ ├── flge.scm │ │ │ ├── flgt.scm │ │ │ ├── flinfinite.scm │ │ │ ├── flle.scm │ │ │ ├── fllog.scm │ │ │ ├── fllt.scm │ │ │ ├── flmax.scm │ │ │ ├── flmin.scm │ │ │ ├── flmul.scm │ │ │ ├── flnan.scm │ │ │ ├── flnegative.scm │ │ │ ├── flonum.scm │ │ │ ├── flpositive.scm │ │ │ ├── flpred.scm │ │ │ ├── flround.scm │ │ │ ├── flsin.scm │ │ │ ├── flsqrt.scm │ │ │ ├── flsquare.scm │ │ │ ├── flsub.scm │ │ │ ├── fltan.scm │ │ │ ├── fltruncate.scm │ │ │ └── flzero.scm │ │ │ ├── 09-char │ │ │ ├── and.scm │ │ │ ├── charp.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ └── println.scm │ │ │ ├── 10-charprim │ │ │ ├── charconv.scm │ │ │ ├── chareq.scm │ │ │ ├── charge.scm │ │ │ ├── chargt.scm │ │ │ ├── charle.scm │ │ │ └── charlt.scm │ │ │ ├── 11-vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ │ │ ├── 12-closure │ │ │ ├── clocode.scm │ │ │ ├── clolength.scm │ │ │ ├── cloref.scm │ │ │ ├── closet.scm │ │ │ ├── closurep.scm │ │ │ ├── makeadder.scm │ │ │ ├── oddeven.scm │ │ │ ├── opt1.scm │ │ │ ├── opt2.scm │ │ │ ├── procedure.scm │ │ │ ├── rest1.scm │ │ │ └── rest2.scm │ │ │ ├── 15-cont │ │ │ ├── contcapgraft.scm │ │ │ ├── contcapret.scm │ │ │ ├── contfib1.scm │ │ │ ├── contfib2.scm │ │ │ ├── contfib3.scm │ │ │ └── ctak.scm │ │ │ ├── 16-misc │ │ │ ├── README │ │ │ ├── eof.scm │ │ │ └── unbound.scm │ │ │ ├── 17-u8vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ │ │ ├── 18-u16vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ │ │ ├── 19-f64vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ │ │ ├── 20-bignum │ │ │ └── ops.scm │ │ │ ├── 21-ratnum │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── not.scm │ │ │ ├── ops.scm │ │ │ ├── or.scm │ │ │ ├── ratnumdenominator.scm │ │ │ ├── ratnummake.scm │ │ │ └── ratnumnumerator.scm │ │ │ ├── 22-cpxnum │ │ │ ├── and.scm │ │ │ ├── cpxnumimag.scm │ │ │ ├── cpxnummake.scm │ │ │ ├── cpxnumreal.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── not.scm │ │ │ ├── ops.scm │ │ │ └── or.scm │ │ │ ├── 23-struct │ │ │ └── ops.scm │ │ │ ├── 24-proc │ │ │ └── ops.scm │ │ │ ├── 30-symbol │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── symbol.scm │ │ │ ├── symbolconv.scm │ │ │ ├── symbolhash.scm │ │ │ ├── symbolinternedp.scm │ │ │ ├── symbolname.scm │ │ │ ├── symbolnameset.scm │ │ │ └── symbolp.scm │ │ │ ├── 31-keyword │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── keyword.scm │ │ │ ├── keywordconv.scm │ │ │ ├── keywordhash.scm │ │ │ ├── keywordinternedp.scm │ │ │ ├── keywordname.scm │ │ │ ├── keywordnameset.scm │ │ │ ├── keywordp.scm │ │ │ ├── not.scm │ │ │ └── or.scm │ │ │ ├── 32-values │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── values.scm │ │ │ ├── valueslength.scm │ │ │ ├── valuesref.scm │ │ │ └── valuesset.scm │ │ │ ├── 33-box │ │ │ ├── and.scm │ │ │ ├── box.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── setbox.scm │ │ │ └── unbox.scm │ │ │ ├── 34-promise │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── promise.scm │ │ │ ├── promiseresult.scm │ │ │ ├── promiseresultset.scm │ │ │ ├── promisethunk.scm │ │ │ └── promisethunkset.scm │ │ │ ├── 35-will │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makewill.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── willaction.scm │ │ │ ├── willactionset.scm │ │ │ ├── willtestator.scm │ │ │ └── willtestatorset.scm │ │ │ ├── 40-univ │ │ │ ├── bijectiveproc.scm │ │ │ ├── bijectivetype.scm │ │ │ ├── bijectiveval.scm │ │ │ └── eval.scm │ │ │ ├── 62-u32vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ │ │ ├── 63-u64vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ │ │ ├── 64-s8vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ │ │ ├── 65-s16vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ │ │ ├── 66-s32vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ │ │ ├── 67-s64vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ │ │ └── 68-f32vector │ │ │ ├── and.scm │ │ │ ├── eq.scm │ │ │ ├── if.scm │ │ │ ├── makevector.scm │ │ │ ├── not.scm │ │ │ ├── or.scm │ │ │ ├── vector.scm │ │ │ ├── vectorlength.scm │ │ │ ├── vectorref.scm │ │ │ ├── vectorset.scm │ │ │ └── vectorshrink.scm │ ├── gsi │ │ ├── _gambcgsi.c │ │ ├── _gambitgsi.c │ │ ├── _gsi.c │ │ ├── _gsi.scm │ │ ├── _gsi_.c │ │ ├── _gsilib.c │ │ ├── _gsilib.scm │ │ ├── main.scm │ │ └── makefile.in │ ├── include │ │ ├── config.h.in │ │ ├── gambit.h.in │ │ ├── makefile.in │ │ └── stamp.h │ ├── install-sh │ ├── lib │ │ ├── _define-syntax.scm │ │ ├── _eval#.scm │ │ ├── _eval.c │ │ ├── _eval.scm │ │ ├── _gambit#.scm │ │ ├── _gambit.c │ │ ├── _io#.scm │ │ ├── _io.c │ │ ├── _io.scm │ │ ├── _kernel#.scm │ │ ├── _kernel.c │ │ ├── _kernel.scm │ │ ├── _nonstd#.scm │ │ ├── _nonstd.c │ │ ├── _nonstd.scm │ │ ├── _num#.scm │ │ ├── _num.c │ │ ├── _num.scm │ │ ├── _repl#.scm │ │ ├── _repl.c │ │ ├── _repl.scm │ │ ├── _std#.scm │ │ ├── _std.c │ │ ├── _std.scm │ │ ├── _syntax-boot.scm │ │ ├── _syntax-case-xform-boot.scm │ │ ├── _syntax-case-xform.scm │ │ ├── _syntax-common.scm │ │ ├── _syntax-pattern.scm │ │ ├── _syntax-rules-xform.scm │ │ ├── _syntax-template.scm │ │ ├── _syntax-xform-boot.scm │ │ ├── _syntax-xform.scm │ │ ├── _syntax.scm │ │ ├── _system#.scm │ │ ├── _system.c │ │ ├── _system.scm │ │ ├── _thread#.scm │ │ ├── _thread.c │ │ ├── _thread.scm │ │ ├── _univlib.scm │ │ ├── _with-syntax-boot.scm │ │ ├── actlog.c │ │ ├── actlog.h │ │ ├── c_intf.c │ │ ├── c_intf.h │ │ ├── check___P │ │ ├── check___P.st │ │ ├── dead.h │ │ ├── digest#.scm │ │ ├── digest.scm │ │ ├── gambit#.scm │ │ ├── guide │ │ │ ├── _guide#.scm │ │ │ ├── _guide.c │ │ │ ├── _guide.h │ │ │ ├── _guide.scm │ │ │ ├── guide.cpp │ │ │ ├── guide.h │ │ │ ├── guidepro.in │ │ │ ├── guideuiabout.ui │ │ │ ├── guideuicodeformat.cpp │ │ │ ├── guideuicodeformat.h │ │ │ ├── guideuiconsoleinfo.cpp │ │ │ ├── guideuiconsoleinfo.h │ │ │ ├── guideuicont.cpp │ │ │ ├── guideuicont.h │ │ │ ├── guideuienv.cpp │ │ │ ├── guideuienv.h │ │ │ ├── guideuifileeditor.ui │ │ │ ├── guideuiformatchooser.ui │ │ │ ├── guideuihighlighter.cpp │ │ │ ├── guideuihighlighter.h │ │ │ ├── guideuihighlighterscheme.cpp │ │ │ ├── guideuihighlighterscheme.h │ │ │ ├── guideuiinspector.cpp │ │ │ ├── guideuiinspector.h │ │ │ ├── guideuimainwindow.ui │ │ │ ├── guideuirepl.cpp │ │ │ ├── guideuirepl.h │ │ │ ├── guideuischeme.cpp │ │ │ ├── guideuischeme.h │ │ │ ├── guideuisearchdialog.ui │ │ │ ├── guideuitableitem.h │ │ │ ├── guideuitextedit.cpp │ │ │ ├── guideuitextedit.h │ │ │ ├── images │ │ │ │ ├── cont.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── filesave.png │ │ │ │ ├── leap.png │ │ │ │ ├── makefile.in │ │ │ │ ├── print.png │ │ │ │ ├── redo.png │ │ │ │ ├── step.png │ │ │ │ └── undo.png │ │ │ └── makefile.in │ │ ├── header.scm │ │ ├── main.c │ │ ├── makefile.in │ │ ├── mem.c │ │ ├── mem.h │ │ ├── os.c │ │ ├── os.h │ │ ├── os_base.c │ │ ├── os_base.h │ │ ├── os_dyn.c │ │ ├── os_dyn.h │ │ ├── os_files.c │ │ ├── os_files.h │ │ ├── os_io.c │ │ ├── os_io.h │ │ ├── os_shell.c │ │ ├── os_shell.h │ │ ├── os_thread.c │ │ ├── os_thread.h │ │ ├── os_time.c │ │ ├── os_time.h │ │ ├── os_tty.c │ │ ├── os_tty.h │ │ ├── psyntax69c.pp │ │ ├── psyntax69c.ss │ │ ├── psyntax73.pp │ │ ├── psyntax73.ss │ │ ├── r4rs#.scm │ │ ├── r5rs#.scm │ │ ├── setup.c │ │ ├── setup.h │ │ ├── syntax-case-build │ │ ├── syntax-case-expand-file │ │ ├── syntax-case-postlude.scm │ │ ├── syntax-case-prelude.scm │ │ ├── syntax-case.scm │ │ └── sys.scm │ ├── makefile.in │ ├── misc │ │ ├── README │ │ ├── bench-gccs │ │ ├── bench.tgz │ │ ├── build-gambit-android │ │ ├── build-gambit-emscripten │ │ ├── build-gambit-iOS │ │ ├── changev │ │ ├── changev1 │ │ ├── checkout-latest-good-commit │ │ ├── conf_bor │ │ ├── conf_bor.sed │ │ ├── conf_bpp.sed │ │ ├── conf_dj │ │ ├── conf_dj.sed │ │ ├── conf_dpp.sed │ │ ├── conf_lcc │ │ ├── conf_lcc.sed │ │ ├── conf_mpp.sed │ │ ├── conf_msc │ │ ├── conf_msc.sed │ │ ├── conf_wat │ │ ├── conf_wat.sed │ │ ├── conf_win.sed │ │ ├── conf_wpp.sed │ │ ├── gambit.el │ │ ├── install-gnu-gcc │ │ ├── makefile.in │ │ ├── openwatcom.bat │ │ ├── proj_bor.zip │ │ ├── proj_cw.hqx │ │ ├── proj_msc.zip │ │ ├── proj_wat.zip │ │ ├── publish-release │ │ ├── set-regs │ │ ├── simple-make-project.tgz │ │ ├── vc2008.bat │ │ ├── vcexpress.bat │ │ ├── vctoolkit.bat │ │ └── vstudio.zip │ ├── mkidirs │ ├── prebuilt │ │ ├── README │ │ ├── macosx │ │ │ ├── InstallationCheck.in │ │ │ ├── build │ │ │ ├── build-phase2.in │ │ │ ├── conclusion.html.in │ │ │ ├── gambit.ai │ │ │ ├── gambit.pmproj.in │ │ │ ├── gambit.tif │ │ │ ├── makefile.in │ │ │ ├── postflight.in │ │ │ ├── readme.html.in │ │ │ ├── remote-shell │ │ │ ├── uninstall-gambit.in │ │ │ └── welcome.html.in │ │ ├── makefile.in │ │ ├── remote-connect │ │ └── windows │ │ │ ├── AddToPath.nsh │ │ │ ├── binpatch.c │ │ │ ├── binpatch.exe │ │ │ ├── blank-floppy.fdd │ │ │ ├── build │ │ │ ├── build-phase2.in │ │ │ ├── gambit.ai │ │ │ ├── gambit.ico │ │ │ ├── gambit.nsi.in │ │ │ ├── makefile.in │ │ │ └── remote-shell │ ├── relpath │ └── tests │ │ ├── client.c │ │ ├── debug.scm │ │ ├── error.scm │ │ ├── input │ │ ├── makefile.in │ │ ├── mem.scm │ │ ├── mix.scm │ │ ├── r4rstest.scm │ │ ├── run-unit-tests.scm │ │ ├── server.h │ │ ├── server.scm │ │ ├── test1.ok │ │ ├── test10.scm │ │ ├── test2.ok │ │ ├── test3.ok │ │ ├── test4.ok │ │ ├── test5.ok │ │ ├── test6.ok │ │ ├── test7.ok │ │ ├── test8.ok │ │ ├── test9.ok │ │ └── unit-tests │ │ ├── #.scm │ │ ├── 00-check │ │ ├── #.scm │ │ ├── check-=.scm │ │ ├── check-eq.scm │ │ ├── check-equal.scm │ │ ├── check-eqv.scm │ │ ├── check-exn.scm │ │ ├── check-false.scm │ │ ├── check-not-eq.scm │ │ ├── check-not-equal.scm │ │ ├── check-not-eqv.scm │ │ ├── check-not-false.scm │ │ ├── check-tail-exn.scm │ │ └── check-true.scm │ │ ├── 01-fixnum │ │ ├── #.scm │ │ ├── fixnump.scm │ │ ├── fxabs.scm │ │ ├── fxadd.scm │ │ ├── fxaddp.scm │ │ ├── fxand.scm │ │ ├── fxarithmetic-shift-left.scm │ │ ├── fxarithmetic-shift-right.scm │ │ ├── fxarithmetic-shift.scm │ │ ├── fxbit-count.scm │ │ ├── fxbit-setp.scm │ │ ├── fxeq.scm │ │ ├── fxevenp.scm │ │ ├── fxfirst-bit-set.scm │ │ ├── fxge.scm │ │ ├── fxgt.scm │ │ ├── fxif.scm │ │ ├── fxior.scm │ │ ├── fxle.scm │ │ ├── fxlength.scm │ │ ├── fxlt.scm │ │ ├── fxmax.scm │ │ ├── fxmin.scm │ │ ├── fxmodulo.scm │ │ ├── fxmul.scm │ │ ├── fxmulp.scm │ │ ├── fxnegativep.scm │ │ ├── fxnot.scm │ │ ├── fxoddp.scm │ │ ├── fxpositivep.scm │ │ ├── fxquotient.scm │ │ ├── fxremainder.scm │ │ ├── fxsquare.scm │ │ ├── fxsquarep.scm │ │ ├── fxsub.scm │ │ ├── fxsubp.scm │ │ ├── fxwrapabs.scm │ │ ├── fxwrapadd.scm │ │ ├── fxwraparithmetic-shift-left.scm │ │ ├── fxwraparithmetic-shift.scm │ │ ├── fxwraplogical-shift-right.scm │ │ ├── fxwrapmul.scm │ │ ├── fxwrapquotient.scm │ │ ├── fxwrapsquare.scm │ │ ├── fxwrapsub.scm │ │ ├── fxxor.scm │ │ └── fxzerop.scm │ │ ├── 02-flonum │ │ ├── #.scm │ │ ├── fladd.scm │ │ ├── fldenominator.scm │ │ ├── fleq.scm │ │ ├── flevenp.scm │ │ ├── flfinitep.scm │ │ ├── flinfinitep.scm │ │ ├── flintegerp.scm │ │ ├── flmax.scm │ │ ├── flmin.scm │ │ ├── flmul.scm │ │ ├── flnegativep.scm │ │ ├── flnumerator.scm │ │ ├── floddp.scm │ │ ├── flonump.scm │ │ ├── flpositivep.scm │ │ ├── flsub.scm │ │ ├── fltruncate.scm │ │ └── flzerop.scm │ │ ├── 03-number │ │ ├── #.scm │ │ ├── abs.scm │ │ ├── acos.scm │ │ ├── acosh.scm │ │ ├── angle.scm │ │ ├── asin.scm │ │ ├── asinh.scm │ │ ├── atan.scm │ │ ├── atanh.scm │ │ ├── conjugate.scm │ │ ├── cos.scm │ │ ├── cosh.scm │ │ ├── exact2inexact.scm │ │ ├── exp.scm │ │ ├── expt.scm │ │ ├── imag-part.scm │ │ ├── inexact2exact.scm │ │ ├── log.scm │ │ ├── magnitude.scm │ │ ├── make-polar.scm │ │ ├── make-rectangular.scm │ │ ├── number2string.scm │ │ ├── real-part.scm │ │ ├── sin.scm │ │ ├── sinh.scm │ │ ├── sqrt.scm │ │ ├── string2number.scm │ │ ├── tan.scm │ │ └── tanh.scm │ │ ├── 04-coverage │ │ ├── #.scm │ │ └── _num.scm │ │ ├── 05-serdes │ │ ├── #.scm │ │ └── serdes.scm │ │ ├── 06-thread │ │ ├── #.scm │ │ └── issue-174.scm │ │ └── 07-vector │ │ ├── #.scm │ │ ├── gentests │ │ ├── s16vector.scm │ │ ├── s32vector.scm │ │ ├── s64vector.scm │ │ ├── s8vector.scm │ │ ├── u16vector.scm │ │ ├── u32vector.scm │ │ ├── u64vector.scm │ │ └── u8vector.scm └── libffi-3.2.1 │ ├── ChangeLog │ ├── ChangeLog.libffi │ ├── ChangeLog.libffi-3.1 │ ├── ChangeLog.libgcj │ ├── ChangeLog.v1 │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ ├── libffi.info │ ├── libffi.texi │ ├── stamp-vti │ └── version.texi │ ├── fficonfig.h.in │ ├── generate-darwin-source-and-headers.py │ ├── include │ ├── Makefile.am │ ├── Makefile.in │ ├── ffi.h.in │ └── ffi_common.h │ ├── install-sh │ ├── libffi.pc.in │ ├── libffi.xcodeproj │ └── project.pbxproj │ ├── libtool-ldflags │ ├── libtool-version │ ├── ltmain.sh │ ├── m4 │ ├── asmcfi.m4 │ ├── ax_append_flag.m4 │ ├── ax_cc_maxopt.m4 │ ├── ax_cflags_warn_all.m4 │ ├── ax_check_compile_flag.m4 │ ├── ax_compiler_vendor.m4 │ ├── ax_configure_args.m4 │ ├── ax_enable_builddir.m4 │ ├── ax_gcc_archflag.m4 │ ├── ax_gcc_x86_cpuid.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 │ ├── makefile.sed~ │ ├── makefiles.mk~ │ ├── man │ ├── Makefile.am │ ├── Makefile.in │ ├── ffi.3 │ ├── ffi_call.3 │ ├── ffi_prep_cif.3 │ └── ffi_prep_cif_var.3 │ ├── mdate-sh │ ├── missing │ ├── msvcc.sh │ ├── src │ ├── aarch64 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── alpha │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── osf.S │ ├── arc │ │ ├── arcompact.S │ │ ├── ffi.c │ │ └── ffitarget.h │ ├── arm │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ ├── gentramp.sh │ │ ├── sysv.S │ │ └── trampoline.S │ ├── avr32 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── bfin │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── closures.c │ ├── cris │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── debug.c │ ├── dlmalloc.c │ ├── frv │ │ ├── eabi.S │ │ ├── ffi.c │ │ └── ffitarget.h │ ├── ia64 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ ├── ia64_flags.h │ │ └── unix.S │ ├── java_raw_api.c │ ├── m32r │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── m68k │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── m88k │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── obsd.S │ ├── metag │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── microblaze │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── mips │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ ├── n32.S │ │ └── o32.S │ ├── moxie │ │ ├── eabi.S │ │ ├── ffi.c │ │ └── ffitarget.h │ ├── nios2 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── or1k │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── pa │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ ├── hpux32.S │ │ └── linux.S │ ├── powerpc │ │ ├── aix.S │ │ ├── aix_closure.S │ │ ├── asm.h │ │ ├── darwin.S │ │ ├── darwin_closure.S │ │ ├── ffi.c │ │ ├── ffi_darwin.c │ │ ├── ffi_linux64.c │ │ ├── ffi_powerpc.h │ │ ├── ffi_sysv.c │ │ ├── ffitarget.h │ │ ├── linux64.S │ │ ├── linux64_closure.S │ │ ├── ppc_closure.S │ │ └── sysv.S │ ├── prep_cif.c │ ├── raw_api.c │ ├── s390 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── sh │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── sh64 │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── sparc │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ ├── v8.S │ │ └── v9.S │ ├── tile │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── tile.S │ ├── types.c │ ├── vax │ │ ├── elfbsd.S │ │ ├── ffi.c │ │ └── ffitarget.h │ ├── x86 │ │ ├── darwin.S │ │ ├── darwin64.S │ │ ├── ffi.c │ │ ├── ffi64.c │ │ ├── ffitarget.h │ │ ├── freebsd.S │ │ ├── sysv.S │ │ ├── unix64.S │ │ ├── win32.S │ │ └── win64.S │ └── xtensa │ │ ├── ffi.c │ │ ├── ffitarget.h │ │ └── sysv.S │ ├── testsuite │ ├── Makefile.am │ ├── Makefile.in │ ├── config │ │ └── default.exp │ ├── lib │ │ ├── libffi.exp │ │ ├── target-libpath.exp │ │ └── wrapper.exp │ └── libffi.call │ │ ├── call.exp │ │ ├── closure_fn0.c │ │ ├── closure_fn1.c │ │ ├── closure_fn2.c │ │ ├── closure_fn3.c │ │ ├── closure_fn4.c │ │ ├── closure_fn5.c │ │ ├── closure_fn6.c │ │ ├── closure_loc_fn0.c │ │ ├── closure_simple.c │ │ ├── cls_12byte.c │ │ ├── cls_16byte.c │ │ ├── cls_18byte.c │ │ ├── cls_19byte.c │ │ ├── cls_1_1byte.c │ │ ├── cls_20byte.c │ │ ├── cls_20byte1.c │ │ ├── cls_24byte.c │ │ ├── cls_2byte.c │ │ ├── cls_3_1byte.c │ │ ├── cls_3byte1.c │ │ ├── cls_3byte2.c │ │ ├── cls_4_1byte.c │ │ ├── cls_4byte.c │ │ ├── cls_5_1_byte.c │ │ ├── cls_5byte.c │ │ ├── cls_64byte.c │ │ ├── cls_6_1_byte.c │ │ ├── cls_6byte.c │ │ ├── cls_7_1_byte.c │ │ ├── cls_7byte.c │ │ ├── cls_8byte.c │ │ ├── cls_9byte1.c │ │ ├── cls_9byte2.c │ │ ├── cls_align_double.c │ │ ├── cls_align_float.c │ │ ├── cls_align_longdouble.c │ │ ├── cls_align_longdouble_split.c │ │ ├── cls_align_longdouble_split2.c │ │ ├── cls_align_pointer.c │ │ ├── cls_align_sint16.c │ │ ├── cls_align_sint32.c │ │ ├── cls_align_sint64.c │ │ ├── cls_align_uint16.c │ │ ├── cls_align_uint32.c │ │ ├── cls_align_uint64.c │ │ ├── cls_dbls_struct.c │ │ ├── cls_double.c │ │ ├── cls_double_va.c │ │ ├── cls_float.c │ │ ├── cls_longdouble.c │ │ ├── cls_longdouble_va.c │ │ ├── cls_multi_schar.c │ │ ├── cls_multi_sshort.c │ │ ├── cls_multi_sshortchar.c │ │ ├── cls_multi_uchar.c │ │ ├── cls_multi_ushort.c │ │ ├── cls_multi_ushortchar.c │ │ ├── cls_pointer.c │ │ ├── cls_pointer_stack.c │ │ ├── cls_schar.c │ │ ├── cls_sint.c │ │ ├── cls_sshort.c │ │ ├── cls_struct_va1.c │ │ ├── cls_uchar.c │ │ ├── cls_uchar_va.c │ │ ├── cls_uint.c │ │ ├── cls_uint_va.c │ │ ├── cls_ulong_va.c │ │ ├── cls_ulonglong.c │ │ ├── cls_ushort.c │ │ ├── cls_ushort_va.c │ │ ├── err_bad_abi.c │ │ ├── err_bad_typedef.c │ │ ├── ffitest.h │ │ ├── float.c │ │ ├── float1.c │ │ ├── float2.c │ │ ├── float3.c │ │ ├── float4.c │ │ ├── float_va.c │ │ ├── huge_struct.c │ │ ├── many.c │ │ ├── many2.c │ │ ├── negint.c │ │ ├── nested_struct.c │ │ ├── nested_struct1.c │ │ ├── nested_struct10.c │ │ ├── nested_struct11.c │ │ ├── nested_struct2.c │ │ ├── nested_struct3.c │ │ ├── nested_struct4.c │ │ ├── nested_struct5.c │ │ ├── nested_struct6.c │ │ ├── nested_struct7.c │ │ ├── nested_struct8.c │ │ ├── nested_struct9.c │ │ ├── problem1.c │ │ ├── promotion.c │ │ ├── pyobjc-tc.c │ │ ├── return_dbl.c │ │ ├── return_dbl1.c │ │ ├── return_dbl2.c │ │ ├── return_fl.c │ │ ├── return_fl1.c │ │ ├── return_fl2.c │ │ ├── return_fl3.c │ │ ├── return_ldl.c │ │ ├── return_ll.c │ │ ├── return_ll1.c │ │ ├── return_sc.c │ │ ├── return_sl.c │ │ ├── return_uc.c │ │ ├── return_ul.c │ │ ├── stret_large.c │ │ ├── stret_large2.c │ │ ├── stret_medium.c │ │ ├── stret_medium2.c │ │ ├── strlen.c │ │ ├── strlen2.c │ │ ├── strlen3.c │ │ ├── strlen4.c │ │ ├── struct1.c │ │ ├── struct2.c │ │ ├── struct3.c │ │ ├── struct4.c │ │ ├── struct5.c │ │ ├── struct6.c │ │ ├── struct7.c │ │ ├── struct8.c │ │ ├── struct9.c │ │ ├── testclosure.c │ │ ├── uninitialized.c │ │ ├── unwindtest.cc │ │ ├── unwindtest_ffi_call.cc │ │ ├── va_1.c │ │ ├── va_struct1.c │ │ ├── va_struct2.c │ │ └── va_struct3.c │ ├── texinfo.tex │ └── x86_64-apple-darwin14.5.0 │ ├── Makefile │ ├── config.status │ ├── fficonfig.h │ ├── include │ ├── Makefile │ ├── ffi.h │ └── ffitarget.h │ ├── libffi.pc │ ├── libtool │ ├── local.exp │ ├── man │ └── Makefile │ ├── src │ ├── .deps │ │ ├── .dirstamp │ │ ├── closures.Plo │ │ ├── debug.Plo │ │ ├── java_raw_api.Plo │ │ ├── prep_cif.Plo │ │ ├── raw_api.Plo │ │ └── types.Plo │ ├── .dirstamp │ ├── aarch64 │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── alpha │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── osf.Plo │ ├── arc │ │ └── .deps │ │ │ ├── arcompact.Plo │ │ │ └── ffi.Plo │ ├── arm │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ ├── sysv.Plo │ │ │ └── trampoline.Plo │ ├── avr32 │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── bfin │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── cris │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── frv │ │ └── .deps │ │ │ ├── eabi.Plo │ │ │ └── ffi.Plo │ ├── ia64 │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── unix.Plo │ ├── m32r │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── m68k │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── m88k │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── obsd.Plo │ ├── metag │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── microblaze │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── mips │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ ├── n32.Plo │ │ │ └── o32.Plo │ ├── moxie │ │ └── .deps │ │ │ ├── eabi.Plo │ │ │ └── ffi.Plo │ ├── nios2 │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── or1k │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── pa │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ ├── hpux32.Plo │ │ │ └── linux.Plo │ ├── powerpc │ │ └── .deps │ │ │ ├── aix.Plo │ │ │ ├── aix_closure.Plo │ │ │ ├── darwin.Plo │ │ │ ├── darwin_closure.Plo │ │ │ ├── ffi.Plo │ │ │ ├── ffi_darwin.Plo │ │ │ ├── ffi_linux64.Plo │ │ │ ├── ffi_sysv.Plo │ │ │ ├── linux64.Plo │ │ │ ├── linux64_closure.Plo │ │ │ ├── ppc_closure.Plo │ │ │ └── sysv.Plo │ ├── s390 │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── sh │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── sh64 │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── sysv.Plo │ ├── sparc │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ ├── v8.Plo │ │ │ └── v9.Plo │ ├── tile │ │ └── .deps │ │ │ ├── ffi.Plo │ │ │ └── tile.Plo │ ├── vax │ │ └── .deps │ │ │ ├── elfbsd.Plo │ │ │ └── ffi.Plo │ ├── x86 │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── darwin.Plo │ │ │ ├── darwin64.Plo │ │ │ ├── ffi.Plo │ │ │ ├── ffi64.Plo │ │ │ ├── freebsd.Plo │ │ │ ├── sysv.Plo │ │ │ ├── unix64.Plo │ │ │ ├── win32.Plo │ │ │ └── win64.Plo │ │ └── .dirstamp │ └── xtensa │ │ └── .deps │ │ ├── ffi.Plo │ │ └── sysv.Plo │ ├── stamp-h1 │ └── testsuite │ └── Makefile ├── src ├── Makefile ├── core │ ├── a.scm │ ├── array.scm │ ├── bitvect.scm │ ├── char.scm │ ├── compiler.scm │ ├── consts.scm │ ├── extn.scm │ ├── ffi.scm │ ├── ilcodegen.scm │ ├── libffi.scm │ ├── list.scm │ ├── lpair.scm │ ├── match.scm │ ├── ns.scm │ ├── number.scm │ ├── os.scm │ ├── package.scm │ ├── parallel.scm │ ├── stream.scm │ ├── string.scm │ ├── syntax.scm │ ├── table.scm │ ├── task.scm │ ├── tokenizer.scm │ ├── util.scm │ └── z.scm ├── include │ └── slogan.h └── repl.scm └── test ├── a.sn ├── basic.sn ├── fp.sn ├── lazy.sn ├── package.sn ├── parconc.sn ├── simple_package ├── build ├── init.sn └── src │ └── test_ffi.c ├── test.sn ├── v011_2.sn ├── v011_3.sn ├── v011_4.sn ├── v011_5.sn ├── v011_8.sn ├── v011_9.sn ├── v011_96.sn ├── v011_97.sn ├── v011_98.sn ├── v012_1.sn ├── v012_2.sn ├── v012_3.sn ├── v012_4.sn ├── v012_6.sn ├── v061.sn ├── v08.sn └── yield.sn /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/TODO -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/configure -------------------------------------------------------------------------------- /docs/css/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/css/basic.css -------------------------------------------------------------------------------- /docs/css/julia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/css/julia.css -------------------------------------------------------------------------------- /docs/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/css/screen.css -------------------------------------------------------------------------------- /docs/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/css/syntax.css -------------------------------------------------------------------------------- /docs/docs/book/bdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/bdt.html -------------------------------------------------------------------------------- /docs/docs/book/cdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/cdt.html -------------------------------------------------------------------------------- /docs/docs/book/cmdline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/cmdline.html -------------------------------------------------------------------------------- /docs/docs/book/code/awk.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/code/awk.sn -------------------------------------------------------------------------------- /docs/docs/book/code/rbt.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/code/rbt.sn -------------------------------------------------------------------------------- /docs/docs/book/code/sample_c_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/code/sample_c_lib.c -------------------------------------------------------------------------------- /docs/docs/book/code/time_client.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/code/time_client.sn -------------------------------------------------------------------------------- /docs/docs/book/code/time_server.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/code/time_server.sn -------------------------------------------------------------------------------- /docs/docs/book/code/time_server02.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/code/time_server02.sn -------------------------------------------------------------------------------- /docs/docs/book/conc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/conc.html -------------------------------------------------------------------------------- /docs/docs/book/cref/call_fn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/cref/call_fn.html -------------------------------------------------------------------------------- /docs/docs/book/cref/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/cref/index.html -------------------------------------------------------------------------------- /docs/docs/book/dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/dist.html -------------------------------------------------------------------------------- /docs/docs/book/elem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/elem.html -------------------------------------------------------------------------------- /docs/docs/book/ex01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ex01.html -------------------------------------------------------------------------------- /docs/docs/book/ffi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ffi.html -------------------------------------------------------------------------------- /docs/docs/book/flow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/flow.html -------------------------------------------------------------------------------- /docs/docs/book/func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/func.html -------------------------------------------------------------------------------- /docs/docs/book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/index.html -------------------------------------------------------------------------------- /docs/docs/book/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/intro.html -------------------------------------------------------------------------------- /docs/docs/book/io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/io.html -------------------------------------------------------------------------------- /docs/docs/book/lazy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/lazy.html -------------------------------------------------------------------------------- /docs/docs/book/p2wip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/p2wip.html -------------------------------------------------------------------------------- /docs/docs/book/pref/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/pref/index.html -------------------------------------------------------------------------------- /docs/docs/book/pref/pfds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/pref/pfds.html -------------------------------------------------------------------------------- /docs/docs/book/pref/pfds_heap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/pref/pfds_heap.html -------------------------------------------------------------------------------- /docs/docs/book/pref/pfds_queue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/pref/pfds_queue.html -------------------------------------------------------------------------------- /docs/docs/book/pref/pfds_ralist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/pref/pfds_ralist.html -------------------------------------------------------------------------------- /docs/docs/book/pref/pfds_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/pref/pfds_tree.html -------------------------------------------------------------------------------- /docs/docs/book/pref/smc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/pref/smc.html -------------------------------------------------------------------------------- /docs/docs/book/pref/smc_stm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/pref/smc_stm.html -------------------------------------------------------------------------------- /docs/docs/book/ref/abort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/abort.html -------------------------------------------------------------------------------- /docs/docs/book/ref/abs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/abs.html -------------------------------------------------------------------------------- /docs/docs/book/ref/accumulate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/accumulate.html -------------------------------------------------------------------------------- /docs/docs/book/ref/act.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/act.html -------------------------------------------------------------------------------- /docs/docs/book/ref/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/add.html -------------------------------------------------------------------------------- /docs/docs/book/ref/and.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/and.html -------------------------------------------------------------------------------- /docs/docs/book/ref/angle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/angle.html -------------------------------------------------------------------------------- /docs/docs/book/ref/append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/append.html -------------------------------------------------------------------------------- /docs/docs/book/ref/apply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/apply.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_append.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_at.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_copy.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_fill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_fill.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_length.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_length.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_map.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_ref.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_ref_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_ref_set.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_set.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_shrink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_shrink.html -------------------------------------------------------------------------------- /docs/docs/book/ref/array_to_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/array_to_list.html -------------------------------------------------------------------------------- /docs/docs/book/ref/arrays_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/arrays_at.html -------------------------------------------------------------------------------- /docs/docs/book/ref/asin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/asin.html -------------------------------------------------------------------------------- /docs/docs/book/ref/assoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/assoc.html -------------------------------------------------------------------------------- /docs/docs/book/ref/assp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/assp.html -------------------------------------------------------------------------------- /docs/docs/book/ref/assq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/assq.html -------------------------------------------------------------------------------- /docs/docs/book/ref/assv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/assv.html -------------------------------------------------------------------------------- /docs/docs/book/ref/at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/at.html -------------------------------------------------------------------------------- /docs/docs/book/ref/band.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/band.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bif.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bior.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bit_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bit_array.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bit_array_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bit_array_at.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bit_array_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bit_array_set.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bit_count.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bit_count.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bits_reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bits_reader.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bits_writer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bits_writer.html -------------------------------------------------------------------------------- /docs/docs/book/ref/blength.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/blength.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bnot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bnot.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bshift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bshift.html -------------------------------------------------------------------------------- /docs/docs/book/ref/bxor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/bxor.html -------------------------------------------------------------------------------- /docs/docs/book/ref/c_struct_get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/c_struct_get.html -------------------------------------------------------------------------------- /docs/docs/book/ref/callcc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/callcc.html -------------------------------------------------------------------------------- /docs/docs/book/ref/car.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/car.html -------------------------------------------------------------------------------- /docs/docs/book/ref/cassign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/cassign.html -------------------------------------------------------------------------------- /docs/docs/book/ref/cblock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/cblock.html -------------------------------------------------------------------------------- /docs/docs/book/ref/ccall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/ccall.html -------------------------------------------------------------------------------- /docs/docs/book/ref/cdr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/cdr.html -------------------------------------------------------------------------------- /docs/docs/book/ref/ceiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/ceiling.html -------------------------------------------------------------------------------- /docs/docs/book/ref/cfunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/cfunction.html -------------------------------------------------------------------------------- /docs/docs/book/ref/char_is_eq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/char_is_eq.html -------------------------------------------------------------------------------- /docs/docs/book/ref/cif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/cif.html -------------------------------------------------------------------------------- /docs/docs/book/ref/clet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/clet.html -------------------------------------------------------------------------------- /docs/docs/book/ref/clets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/clets.html -------------------------------------------------------------------------------- /docs/docs/book/ref/cmkbparser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/cmkbparser.html -------------------------------------------------------------------------------- /docs/docs/book/ref/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/compare.html -------------------------------------------------------------------------------- /docs/docs/book/ref/compile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/compile.html -------------------------------------------------------------------------------- /docs/docs/book/ref/compiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/compiler.html -------------------------------------------------------------------------------- /docs/docs/book/ref/complement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/complement.html -------------------------------------------------------------------------------- /docs/docs/book/ref/compose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/compose.html -------------------------------------------------------------------------------- /docs/docs/book/ref/contains.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/contains.html -------------------------------------------------------------------------------- /docs/docs/book/ref/copy_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/copy_file.html -------------------------------------------------------------------------------- /docs/docs/book/ref/copy_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/copy_list.html -------------------------------------------------------------------------------- /docs/docs/book/ref/count.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/count.html -------------------------------------------------------------------------------- /docs/docs/book/ref/cpu_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/cpu_time.html -------------------------------------------------------------------------------- /docs/docs/book/ref/dec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/dec.html -------------------------------------------------------------------------------- /docs/docs/book/ref/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/display.html -------------------------------------------------------------------------------- /docs/docs/book/ref/div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/div.html -------------------------------------------------------------------------------- /docs/docs/book/ref/do_times.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/do_times.html -------------------------------------------------------------------------------- /docs/docs/book/ref/drop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/drop.html -------------------------------------------------------------------------------- /docs/docs/book/ref/drop_while.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/drop_while.html -------------------------------------------------------------------------------- /docs/docs/book/ref/enumerate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/enumerate.html -------------------------------------------------------------------------------- /docs/docs/book/ref/eof_object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/eof_object.html -------------------------------------------------------------------------------- /docs/docs/book/ref/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/error.html -------------------------------------------------------------------------------- /docs/docs/book/ref/error_args.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/error_args.html -------------------------------------------------------------------------------- /docs/docs/book/ref/eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/eval.html -------------------------------------------------------------------------------- /docs/docs/book/ref/exact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/exact.html -------------------------------------------------------------------------------- /docs/docs/book/ref/exists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/exists.html -------------------------------------------------------------------------------- /docs/docs/book/ref/exit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/exit.html -------------------------------------------------------------------------------- /docs/docs/book/ref/exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/exp.html -------------------------------------------------------------------------------- /docs/docs/book/ref/expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/expression.html -------------------------------------------------------------------------------- /docs/docs/book/ref/expt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/expt.html -------------------------------------------------------------------------------- /docs/docs/book/ref/f32array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/f32array.html -------------------------------------------------------------------------------- /docs/docs/book/ref/ffi_close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/ffi_close.html -------------------------------------------------------------------------------- /docs/docs/book/ref/ffi_fn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/ffi_fn.html -------------------------------------------------------------------------------- /docs/docs/book/ref/ffi_open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/ffi_open.html -------------------------------------------------------------------------------- /docs/docs/book/ref/file_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/file_info.html -------------------------------------------------------------------------------- /docs/docs/book/ref/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/filter.html -------------------------------------------------------------------------------- /docs/docs/book/ref/find.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/find.html -------------------------------------------------------------------------------- /docs/docs/book/ref/first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/first.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fl_is_eq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fl_is_eq.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fl_is_even.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fl_is_even.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fl_is_zero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fl_is_zero.html -------------------------------------------------------------------------------- /docs/docs/book/ref/flabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/flabs.html -------------------------------------------------------------------------------- /docs/docs/book/ref/flacos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/flacos.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fladd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fladd.html -------------------------------------------------------------------------------- /docs/docs/book/ref/flceiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/flceiling.html -------------------------------------------------------------------------------- /docs/docs/book/ref/flexp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/flexp.html -------------------------------------------------------------------------------- /docs/docs/book/ref/flexpt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/flexpt.html -------------------------------------------------------------------------------- /docs/docs/book/ref/flfloor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/flfloor.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fllog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fllog.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fllogb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fllogb.html -------------------------------------------------------------------------------- /docs/docs/book/ref/flmax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/flmax.html -------------------------------------------------------------------------------- /docs/docs/book/ref/floor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/floor.html -------------------------------------------------------------------------------- /docs/docs/book/ref/flround.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/flround.html -------------------------------------------------------------------------------- /docs/docs/book/ref/flsqrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/flsqrt.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fltruncate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fltruncate.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fold.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fold_left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fold_left.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fold_right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fold_right.html -------------------------------------------------------------------------------- /docs/docs/book/ref/for_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/for_all.html -------------------------------------------------------------------------------- /docs/docs/book/ref/for_each.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/for_each.html -------------------------------------------------------------------------------- /docs/docs/book/ref/force.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/force.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fx_is_eq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fx_is_eq.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fx_is_even.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fx_is_even.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fx_is_odd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fx_is_odd.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fx_is_zero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fx_is_zero.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fxadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fxadd.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fxand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fxand.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fxif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fxif.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fxlength.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fxlength.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fxmax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fxmax.html -------------------------------------------------------------------------------- /docs/docs/book/ref/fxshift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/fxshift.html -------------------------------------------------------------------------------- /docs/docs/book/ref/gcd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/gcd.html -------------------------------------------------------------------------------- /docs/docs/book/ref/gensym.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/gensym.html -------------------------------------------------------------------------------- /docs/docs/book/ref/get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/get.html -------------------------------------------------------------------------------- /docs/docs/book/ref/get_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/get_token.html -------------------------------------------------------------------------------- /docs/docs/book/ref/getenv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/getenv.html -------------------------------------------------------------------------------- /docs/docs/book/ref/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/head.html -------------------------------------------------------------------------------- /docs/docs/book/ref/host_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/host_info.html -------------------------------------------------------------------------------- /docs/docs/book/ref/host_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/host_name.html -------------------------------------------------------------------------------- /docs/docs/book/ref/identity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/identity.html -------------------------------------------------------------------------------- /docs/docs/book/ref/inc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/inc.html -------------------------------------------------------------------------------- /docs/docs/book/ref/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/index.html -------------------------------------------------------------------------------- /docs/docs/book/ref/inexact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/inexact.html -------------------------------------------------------------------------------- /docs/docs/book/ref/inf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/inf.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_array.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_bit_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_bit_set.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_boolean.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_char.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_char.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_complex.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_empty.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_eq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_eq.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_equal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_equal.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_eqv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_eqv.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_error.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_even.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_even.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_exact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_exact.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_false.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_false.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_finite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_finite.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_fixnum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_fixnum.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_flonum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_flonum.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_inexact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_inexact.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_integer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_integer.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_list.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_lpair.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_lpair.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_monitor.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_mutex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_mutex.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_nan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_nan.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_number.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_odd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_odd.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_pair.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_pair.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_prime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_prime.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_reader.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_real.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_real.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_set.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_stream.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_string.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_subset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_subset.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_symbol.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_task.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_true.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_true.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_u8array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_u8array.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_void.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_void.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_writer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_writer.html -------------------------------------------------------------------------------- /docs/docs/book/ref/is_zero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/is_zero.html -------------------------------------------------------------------------------- /docs/docs/book/ref/iterator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/iterator.html -------------------------------------------------------------------------------- /docs/docs/book/ref/lcm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/lcm.html -------------------------------------------------------------------------------- /docs/docs/book/ref/length.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/length.html -------------------------------------------------------------------------------- /docs/docs/book/ref/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/link.html -------------------------------------------------------------------------------- /docs/docs/book/ref/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/list.html -------------------------------------------------------------------------------- /docs/docs/book/ref/list_of.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/list_of.html -------------------------------------------------------------------------------- /docs/docs/book/ref/list_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/list_set.html -------------------------------------------------------------------------------- /docs/docs/book/ref/list_tail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/list_tail.html -------------------------------------------------------------------------------- /docs/docs/book/ref/load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/load.html -------------------------------------------------------------------------------- /docs/docs/book/ref/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/log.html -------------------------------------------------------------------------------- /docs/docs/book/ref/logb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/logb.html -------------------------------------------------------------------------------- /docs/docs/book/ref/make_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/make_array.html -------------------------------------------------------------------------------- /docs/docs/book/ref/make_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/make_set.html -------------------------------------------------------------------------------- /docs/docs/book/ref/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/map.html -------------------------------------------------------------------------------- /docs/docs/book/ref/mapfn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/mapfn.html -------------------------------------------------------------------------------- /docs/docs/book/ref/max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/max.html -------------------------------------------------------------------------------- /docs/docs/book/ref/member.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/member.html -------------------------------------------------------------------------------- /docs/docs/book/ref/memp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/memp.html -------------------------------------------------------------------------------- /docs/docs/book/ref/memq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/memq.html -------------------------------------------------------------------------------- /docs/docs/book/ref/memv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/memv.html -------------------------------------------------------------------------------- /docs/docs/book/ref/mergesort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/mergesort.html -------------------------------------------------------------------------------- /docs/docs/book/ref/min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/min.html -------------------------------------------------------------------------------- /docs/docs/book/ref/mod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/mod.html -------------------------------------------------------------------------------- /docs/docs/book/ref/modulo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/modulo.html -------------------------------------------------------------------------------- /docs/docs/book/ref/monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/monitor.html -------------------------------------------------------------------------------- /docs/docs/book/ref/mult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/mult.html -------------------------------------------------------------------------------- /docs/docs/book/ref/mutex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/mutex.html -------------------------------------------------------------------------------- /docs/docs/book/ref/mutex_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/mutex_data.html -------------------------------------------------------------------------------- /docs/docs/book/ref/mutex_lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/mutex_lock.html -------------------------------------------------------------------------------- /docs/docs/book/ref/mutex_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/mutex_name.html -------------------------------------------------------------------------------- /docs/docs/book/ref/nan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/nan.html -------------------------------------------------------------------------------- /docs/docs/book/ref/newline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/newline.html -------------------------------------------------------------------------------- /docs/docs/book/ref/next.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/next.html -------------------------------------------------------------------------------- /docs/docs/book/ref/ninf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/ninf.html -------------------------------------------------------------------------------- /docs/docs/book/ref/not.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/not.html -------------------------------------------------------------------------------- /docs/docs/book/ref/now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/now.html -------------------------------------------------------------------------------- /docs/docs/book/ref/now_utc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/now_utc.html -------------------------------------------------------------------------------- /docs/docs/book/ref/nth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/nth.html -------------------------------------------------------------------------------- /docs/docs/book/ref/nth_tail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/nth_tail.html -------------------------------------------------------------------------------- /docs/docs/book/ref/numerator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/numerator.html -------------------------------------------------------------------------------- /docs/docs/book/ref/nzero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/nzero.html -------------------------------------------------------------------------------- /docs/docs/book/ref/or.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/or.html -------------------------------------------------------------------------------- /docs/docs/book/ref/os_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/os_name.html -------------------------------------------------------------------------------- /docs/docs/book/ref/pair.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/pair.html -------------------------------------------------------------------------------- /docs/docs/book/ref/partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/partial.html -------------------------------------------------------------------------------- /docs/docs/book/ref/partition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/partition.html -------------------------------------------------------------------------------- /docs/docs/book/ref/peek_char.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/peek_char.html -------------------------------------------------------------------------------- /docs/docs/book/ref/peek_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/peek_token.html -------------------------------------------------------------------------------- /docs/docs/book/ref/polar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/polar.html -------------------------------------------------------------------------------- /docs/docs/book/ref/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/position.html -------------------------------------------------------------------------------- /docs/docs/book/ref/println.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/println.html -------------------------------------------------------------------------------- /docs/docs/book/ref/process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/process.html -------------------------------------------------------------------------------- /docs/docs/book/ref/quo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/quo.html -------------------------------------------------------------------------------- /docs/docs/book/ref/quotient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/quotient.html -------------------------------------------------------------------------------- /docs/docs/book/ref/raise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/raise.html -------------------------------------------------------------------------------- /docs/docs/book/ref/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/range.html -------------------------------------------------------------------------------- /docs/docs/book/ref/rbind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/rbind.html -------------------------------------------------------------------------------- /docs/docs/book/ref/react.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/react.html -------------------------------------------------------------------------------- /docs/docs/book/ref/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/read.html -------------------------------------------------------------------------------- /docs/docs/book/ref/read_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/read_all.html -------------------------------------------------------------------------------- /docs/docs/book/ref/read_bit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/read_bit.html -------------------------------------------------------------------------------- /docs/docs/book/ref/read_bits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/read_bits.html -------------------------------------------------------------------------------- /docs/docs/book/ref/read_byte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/read_byte.html -------------------------------------------------------------------------------- /docs/docs/book/ref/read_char.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/read_char.html -------------------------------------------------------------------------------- /docs/docs/book/ref/read_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/read_line.html -------------------------------------------------------------------------------- /docs/docs/book/ref/real_part.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/real_part.html -------------------------------------------------------------------------------- /docs/docs/book/ref/real_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/real_time.html -------------------------------------------------------------------------------- /docs/docs/book/ref/realize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/realize.html -------------------------------------------------------------------------------- /docs/docs/book/ref/ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/ref.html -------------------------------------------------------------------------------- /docs/docs/book/ref/ref_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/ref_set.html -------------------------------------------------------------------------------- /docs/docs/book/ref/reload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/reload.html -------------------------------------------------------------------------------- /docs/docs/book/ref/rem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/rem.html -------------------------------------------------------------------------------- /docs/docs/book/ref/remainder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/remainder.html -------------------------------------------------------------------------------- /docs/docs/book/ref/remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/remove.html -------------------------------------------------------------------------------- /docs/docs/book/ref/remp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/remp.html -------------------------------------------------------------------------------- /docs/docs/book/ref/rest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/rest.html -------------------------------------------------------------------------------- /docs/docs/book/ref/reverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/reverse.html -------------------------------------------------------------------------------- /docs/docs/book/ref/rget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/rget.html -------------------------------------------------------------------------------- /docs/docs/book/ref/root_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/root_task.html -------------------------------------------------------------------------------- /docs/docs/book/ref/round.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/round.html -------------------------------------------------------------------------------- /docs/docs/book/ref/rvar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/rvar.html -------------------------------------------------------------------------------- /docs/docs/book/ref/self.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/self.html -------------------------------------------------------------------------------- /docs/docs/book/ref/set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/set.html -------------------------------------------------------------------------------- /docs/docs/book/ref/set_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/set_head.html -------------------------------------------------------------------------------- /docs/docs/book/ref/set_length.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/set_length.html -------------------------------------------------------------------------------- /docs/docs/book/ref/set_tail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/set_tail.html -------------------------------------------------------------------------------- /docs/docs/book/ref/set_union.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/set_union.html -------------------------------------------------------------------------------- /docs/docs/book/ref/setenv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/setenv.html -------------------------------------------------------------------------------- /docs/docs/book/ref/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/show.html -------------------------------------------------------------------------------- /docs/docs/book/ref/showln.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/showln.html -------------------------------------------------------------------------------- /docs/docs/book/ref/sin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/sin.html -------------------------------------------------------------------------------- /docs/docs/book/ref/slogan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/slogan.html -------------------------------------------------------------------------------- /docs/docs/book/ref/sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/sort.html -------------------------------------------------------------------------------- /docs/docs/book/ref/sqrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/sqrt.html -------------------------------------------------------------------------------- /docs/docs/book/ref/statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/statement.html -------------------------------------------------------------------------------- /docs/docs/book/ref/string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/string.html -------------------------------------------------------------------------------- /docs/docs/book/ref/string_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/string_at.html -------------------------------------------------------------------------------- /docs/docs/book/ref/string_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/string_map.html -------------------------------------------------------------------------------- /docs/docs/book/ref/string_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/string_set.html -------------------------------------------------------------------------------- /docs/docs/book/ref/strings_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/strings_at.html -------------------------------------------------------------------------------- /docs/docs/book/ref/sub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/sub.html -------------------------------------------------------------------------------- /docs/docs/book/ref/subarray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/subarray.html -------------------------------------------------------------------------------- /docs/docs/book/ref/sublist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/sublist.html -------------------------------------------------------------------------------- /docs/docs/book/ref/substring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/substring.html -------------------------------------------------------------------------------- /docs/docs/book/ref/subu8array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/subu8array.html -------------------------------------------------------------------------------- /docs/docs/book/ref/tail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/tail.html -------------------------------------------------------------------------------- /docs/docs/book/ref/take.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/take.html -------------------------------------------------------------------------------- /docs/docs/book/ref/take_while.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/take_while.html -------------------------------------------------------------------------------- /docs/docs/book/ref/task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/task.html -------------------------------------------------------------------------------- /docs/docs/book/ref/task_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/task_data.html -------------------------------------------------------------------------------- /docs/docs/book/ref/task_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/task_group.html -------------------------------------------------------------------------------- /docs/docs/book/ref/task_join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/task_join.html -------------------------------------------------------------------------------- /docs/docs/book/ref/task_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/task_name.html -------------------------------------------------------------------------------- /docs/docs/book/ref/task_run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/task_run.html -------------------------------------------------------------------------------- /docs/docs/book/ref/task_send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/task_send.html -------------------------------------------------------------------------------- /docs/docs/book/ref/task_sleep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/task_sleep.html -------------------------------------------------------------------------------- /docs/docs/book/ref/task_state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/task_state.html -------------------------------------------------------------------------------- /docs/docs/book/ref/task_yield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/task_yield.html -------------------------------------------------------------------------------- /docs/docs/book/ref/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/time.html -------------------------------------------------------------------------------- /docs/docs/book/ref/to_string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/to_string.html -------------------------------------------------------------------------------- /docs/docs/book/ref/trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/trace.html -------------------------------------------------------------------------------- /docs/docs/book/ref/transcoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/transcoder.html -------------------------------------------------------------------------------- /docs/docs/book/ref/truncate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/truncate.html -------------------------------------------------------------------------------- /docs/docs/book/ref/u8array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/u8array.html -------------------------------------------------------------------------------- /docs/docs/book/ref/u8array_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/u8array_at.html -------------------------------------------------------------------------------- /docs/docs/book/ref/until.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/until.html -------------------------------------------------------------------------------- /docs/docs/book/ref/untrace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/untrace.html -------------------------------------------------------------------------------- /docs/docs/book/ref/unzip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/unzip.html -------------------------------------------------------------------------------- /docs/docs/book/ref/values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/values.html -------------------------------------------------------------------------------- /docs/docs/book/ref/void.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/void.html -------------------------------------------------------------------------------- /docs/docs/book/ref/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/write.html -------------------------------------------------------------------------------- /docs/docs/book/ref/write_bit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/write_bit.html -------------------------------------------------------------------------------- /docs/docs/book/ref/write_bits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/write_bits.html -------------------------------------------------------------------------------- /docs/docs/book/ref/write_byte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/write_byte.html -------------------------------------------------------------------------------- /docs/docs/book/ref/write_char.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/write_char.html -------------------------------------------------------------------------------- /docs/docs/book/ref/zero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/zero.html -------------------------------------------------------------------------------- /docs/docs/book/ref/zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/zip.html -------------------------------------------------------------------------------- /docs/docs/book/ref/zip_with.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/ref/zip_with.html -------------------------------------------------------------------------------- /docs/docs/book/state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/state.html -------------------------------------------------------------------------------- /docs/docs/book/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/style.css -------------------------------------------------------------------------------- /docs/docs/book/syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/syntax.html -------------------------------------------------------------------------------- /docs/docs/book/tut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/book/tut.html -------------------------------------------------------------------------------- /docs/docs/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/design.html -------------------------------------------------------------------------------- /docs/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/index.html -------------------------------------------------------------------------------- /docs/docs/pm/bd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/bd.html -------------------------------------------------------------------------------- /docs/docs/pm/except.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/except.html -------------------------------------------------------------------------------- /docs/docs/pm/ffi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/ffi.html -------------------------------------------------------------------------------- /docs/docs/pm/gf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/gf.html -------------------------------------------------------------------------------- /docs/docs/pm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/index.html -------------------------------------------------------------------------------- /docs/docs/pm/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/intro.html -------------------------------------------------------------------------------- /docs/docs/pm/io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/io.html -------------------------------------------------------------------------------- /docs/docs/pm/mod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/mod.html -------------------------------------------------------------------------------- /docs/docs/pm/mt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/mt.html -------------------------------------------------------------------------------- /docs/docs/pm/pack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/pack.html -------------------------------------------------------------------------------- /docs/docs/pm/pc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/pc.html -------------------------------------------------------------------------------- /docs/docs/pm/rec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/rec.html -------------------------------------------------------------------------------- /docs/docs/pm/si.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/si.html -------------------------------------------------------------------------------- /docs/docs/pm/syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/pm/syntax.html -------------------------------------------------------------------------------- /docs/docs/tut/control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/tut/control.html -------------------------------------------------------------------------------- /docs/docs/tut/par.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/tut/par.html -------------------------------------------------------------------------------- /docs/docs/tut/par_code.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/tut/par_code.tar.gz -------------------------------------------------------------------------------- /docs/docs/tut/pat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/docs/tut/pat.html -------------------------------------------------------------------------------- /docs/downloads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/downloads/index.html -------------------------------------------------------------------------------- /docs/gs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/gs.html -------------------------------------------------------------------------------- /docs/images/slogan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/images/slogan.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/docs/index.html -------------------------------------------------------------------------------- /emacs/slogan-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/emacs/slogan-mode.el -------------------------------------------------------------------------------- /example/algo/search.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/algo/search.sn -------------------------------------------------------------------------------- /example/algo/sort.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/algo/sort.sn -------------------------------------------------------------------------------- /example/algo/sort_test.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/algo/sort_test.sn -------------------------------------------------------------------------------- /example/binstr.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/binstr.sn -------------------------------------------------------------------------------- /example/caesar_cipher.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/caesar_cipher.sn -------------------------------------------------------------------------------- /example/compress.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/compress.sn -------------------------------------------------------------------------------- /example/data_mining/similarity.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/data_mining/similarity.sn -------------------------------------------------------------------------------- /example/ffi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/ffi/README.md -------------------------------------------------------------------------------- /example/ffi/clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/ffi/clib.c -------------------------------------------------------------------------------- /example/ffi/clib.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/ffi/clib.sn -------------------------------------------------------------------------------- /example/file_server.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/file_server.sn -------------------------------------------------------------------------------- /example/filter_prime.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/filter_prime.sn -------------------------------------------------------------------------------- /example/future.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/future.sn -------------------------------------------------------------------------------- /example/graph.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/graph.sn -------------------------------------------------------------------------------- /example/guess.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/guess.sn -------------------------------------------------------------------------------- /example/matrix.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/matrix.sn -------------------------------------------------------------------------------- /example/nondet.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/nondet.sn -------------------------------------------------------------------------------- /example/objects.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/objects.sn -------------------------------------------------------------------------------- /example/option.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/option.sn -------------------------------------------------------------------------------- /example/packages/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/packages/media/README.md -------------------------------------------------------------------------------- /example/packages/media/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/packages/media/build -------------------------------------------------------------------------------- /example/packages/media/event.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/packages/media/event.sn -------------------------------------------------------------------------------- /example/packages/media/init.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/packages/media/init.sn -------------------------------------------------------------------------------- /example/packages/simple/build.sn: -------------------------------------------------------------------------------- 1 | compile("init") 2 | -------------------------------------------------------------------------------- /example/packages/simple/init.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/packages/simple/init.sn -------------------------------------------------------------------------------- /example/packages/sqlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/packages/sqlite/README.md -------------------------------------------------------------------------------- /example/packages/sqlite/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/packages/sqlite/build -------------------------------------------------------------------------------- /example/packages/sqlite/init.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/packages/sqlite/init.sn -------------------------------------------------------------------------------- /example/perm.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/perm.sn -------------------------------------------------------------------------------- /example/pq.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/pq.sn -------------------------------------------------------------------------------- /example/propagators.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/propagators.sn -------------------------------------------------------------------------------- /example/regex.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/regex.sn -------------------------------------------------------------------------------- /example/votes.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/example/votes.sn -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/install -------------------------------------------------------------------------------- /pkgsrc/algo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/README.md -------------------------------------------------------------------------------- /pkgsrc/algo/src/core.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/src/core.sn -------------------------------------------------------------------------------- /pkgsrc/algo/src/graph.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/src/graph.sn -------------------------------------------------------------------------------- /pkgsrc/algo/src/pq.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/src/pq.sn -------------------------------------------------------------------------------- /pkgsrc/algo/src/q.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/src/q.sn -------------------------------------------------------------------------------- /pkgsrc/algo/src/sorts.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/src/sorts.sn -------------------------------------------------------------------------------- /pkgsrc/algo/src/trie.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/src/trie.sn -------------------------------------------------------------------------------- /pkgsrc/algo/src/uf.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/src/uf.sn -------------------------------------------------------------------------------- /pkgsrc/algo/test/test_all.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/test/test_all.sn -------------------------------------------------------------------------------- /pkgsrc/algo/test/test_graph.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/test/test_graph.sn -------------------------------------------------------------------------------- /pkgsrc/algo/test/test_pq.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/test/test_pq.sn -------------------------------------------------------------------------------- /pkgsrc/algo/test/test_q.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/test/test_q.sn -------------------------------------------------------------------------------- /pkgsrc/algo/test/test_sorts.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/test/test_sorts.sn -------------------------------------------------------------------------------- /pkgsrc/algo/test/test_trie.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/test/test_trie.sn -------------------------------------------------------------------------------- /pkgsrc/algo/test/test_uf.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/algo/test/test_uf.sn -------------------------------------------------------------------------------- /pkgsrc/pfds/build.sn: -------------------------------------------------------------------------------- 1 | compile("init") -------------------------------------------------------------------------------- /pkgsrc/pfds/init.sn: -------------------------------------------------------------------------------- 1 | init_package("pfds") -------------------------------------------------------------------------------- /pkgsrc/pfds/src/core.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/pfds/src/core.sn -------------------------------------------------------------------------------- /pkgsrc/pfds/src/heap.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/pfds/src/heap.sn -------------------------------------------------------------------------------- /pkgsrc/pfds/src/queue.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/pfds/src/queue.sn -------------------------------------------------------------------------------- /pkgsrc/pfds/src/ralist.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/pfds/src/ralist.sn -------------------------------------------------------------------------------- /pkgsrc/pfds/src/rbt.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/pfds/src/rbt.sn -------------------------------------------------------------------------------- /pkgsrc/pfds/test/pfds.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/pfds/test/pfds.sn -------------------------------------------------------------------------------- /pkgsrc/smc/build.sn: -------------------------------------------------------------------------------- 1 | compile("init") -------------------------------------------------------------------------------- /pkgsrc/smc/init.sn: -------------------------------------------------------------------------------- 1 | init_package("smc") -------------------------------------------------------------------------------- /pkgsrc/smc/src/core.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/smc/src/core.sn -------------------------------------------------------------------------------- /pkgsrc/smc/src/stm.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/smc/src/stm.sn -------------------------------------------------------------------------------- /pkgsrc/smc/test/stm.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/pkgsrc/smc/test/stm.sn -------------------------------------------------------------------------------- /platform/gsc/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/.gitattributes -------------------------------------------------------------------------------- /platform/gsc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/.gitignore -------------------------------------------------------------------------------- /platform/gsc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/.travis.yml -------------------------------------------------------------------------------- /platform/gsc/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/INSTALL.txt -------------------------------------------------------------------------------- /platform/gsc/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/LGPL.txt -------------------------------------------------------------------------------- /platform/gsc/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/LICENSE-2.0.txt -------------------------------------------------------------------------------- /platform/gsc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/README -------------------------------------------------------------------------------- /platform/gsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/README.md -------------------------------------------------------------------------------- /platform/gsc/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/appveyor.yml -------------------------------------------------------------------------------- /platform/gsc/bin/gambcomp-C.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/bin/gambcomp-C.unix -------------------------------------------------------------------------------- /platform/gsc/bin/gambdoc.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/bin/gambdoc.unix -------------------------------------------------------------------------------- /platform/gsc/bin/gambdoc.unix.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/bin/gambdoc.unix.in -------------------------------------------------------------------------------- /platform/gsc/bin/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/bin/makefile.in -------------------------------------------------------------------------------- /platform/gsc/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/config.guess -------------------------------------------------------------------------------- /platform/gsc/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/config.sub -------------------------------------------------------------------------------- /platform/gsc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/configure -------------------------------------------------------------------------------- /platform/gsc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/configure.ac -------------------------------------------------------------------------------- /platform/gsc/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/contrib/README -------------------------------------------------------------------------------- /platform/gsc/contrib/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/contrib/makefile.in -------------------------------------------------------------------------------- /platform/gsc/doc/bench.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/bench.scm -------------------------------------------------------------------------------- /platform/gsc/doc/checkdoc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/checkdoc.scm -------------------------------------------------------------------------------- /platform/gsc/doc/gambini.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/gambini.scm -------------------------------------------------------------------------------- /platform/gsc/doc/gambit.txi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/gambit.txi -------------------------------------------------------------------------------- /platform/gsc/doc/gsi.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/gsi.1 -------------------------------------------------------------------------------- /platform/gsc/doc/h.scm: -------------------------------------------------------------------------------- 1 | (display "hello") (newline) 2 | -------------------------------------------------------------------------------- /platform/gsc/doc/m1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/m1.c -------------------------------------------------------------------------------- /platform/gsc/doc/m2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/m2.scm -------------------------------------------------------------------------------- /platform/gsc/doc/m3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/m3.scm -------------------------------------------------------------------------------- /platform/gsc/doc/m4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/m4.scm -------------------------------------------------------------------------------- /platform/gsc/doc/m5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/m5.scm -------------------------------------------------------------------------------- /platform/gsc/doc/m6.scm: -------------------------------------------------------------------------------- 1 | (define (f x) (g (* x x))) 2 | -------------------------------------------------------------------------------- /platform/gsc/doc/m7.scm: -------------------------------------------------------------------------------- 1 | (define (g y) (+ n y)) 2 | -------------------------------------------------------------------------------- /platform/gsc/doc/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/makefile.in -------------------------------------------------------------------------------- /platform/gsc/doc/square.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/square.scm -------------------------------------------------------------------------------- /platform/gsc/doc/test1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/test1.scm -------------------------------------------------------------------------------- /platform/gsc/doc/test2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/test2.scm -------------------------------------------------------------------------------- /platform/gsc/doc/test3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/test3.scm -------------------------------------------------------------------------------- /platform/gsc/doc/texi2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/texi2html -------------------------------------------------------------------------------- /platform/gsc/doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/texinfo.tex -------------------------------------------------------------------------------- /platform/gsc/doc/w.six: -------------------------------------------------------------------------------- 1 | display("world"); newline(); 2 | -------------------------------------------------------------------------------- /platform/gsc/doc/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/x.c -------------------------------------------------------------------------------- /platform/gsc/doc/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/doc/x.h -------------------------------------------------------------------------------- /platform/gsc/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/examples/README -------------------------------------------------------------------------------- /platform/gsc/examples/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/examples/makefile.in -------------------------------------------------------------------------------- /platform/gsc/examples/misc/README: -------------------------------------------------------------------------------- 1 | Miscellaneous small examples. 2 | -------------------------------------------------------------------------------- /platform/gsc/examples/pi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/examples/pi/README -------------------------------------------------------------------------------- /platform/gsc/examples/pi/pi.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/examples/pi/pi.scm -------------------------------------------------------------------------------- /platform/gsc/examples/ring/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/examples/ring/README -------------------------------------------------------------------------------- /platform/gsc/examples/tcltk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/examples/tcltk/README -------------------------------------------------------------------------------- /platform/gsc/gsc-boot.bat.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc-boot.bat.windows -------------------------------------------------------------------------------- /platform/gsc/gsc-boot.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc-boot.unix -------------------------------------------------------------------------------- /platform/gsc/gsc/_asm#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_asm#.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_asm.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_asm.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_asm.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_assert#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_assert#.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_assert.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_assert.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_assert.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_back.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_back.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_back.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_codegen#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_codegen#.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_codegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_codegen.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_codegen.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_codegen.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_env.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_env.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_env.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_envadt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_envadt.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_front.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_front.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_front.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_gambcgsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gambcgsc.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_gambitgsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gambitgsc.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_gsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gsc.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_gsc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gsc.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_gsc_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gsc_.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_gscdebug.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gscdebug.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_gsclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gsclib.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_gsclib.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gsclib.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_gvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gvm.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_gvm.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gvm.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_gvmadt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_gvmadt.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_host.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_host.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_host.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_parms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_parms.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_parms.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_parms.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_prims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_prims.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_prims.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_prims.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_ptree1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_ptree1.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_ptree1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_ptree1.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_ptree2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_ptree2.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_ptree2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_ptree2.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_ptreeadt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_ptreeadt.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_source.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_source.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_source.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_sourceadt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_sourceadt.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-c-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-c-1.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-c-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-c-1.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-c-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-c-2.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-c-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-c-2.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-c-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-c-3.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-c-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-c-3.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-univ-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-univ-1.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-univ-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-univ-1.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-univ-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-univ-2.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-univ-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-univ-2.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-univ-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-univ-3.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-univ-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-univ-3.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-univ-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-univ-4.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-univ-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-univ-4.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_t-x86.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_t-x86.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_univadt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_univadt.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_utils.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_utils.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_utils.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_x86#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_x86#.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_x86.c -------------------------------------------------------------------------------- /platform/gsc/gsc/_x86.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/_x86.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/fixnum.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/fixnum.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/generic.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/generic.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/igsc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/igsc.scm -------------------------------------------------------------------------------- /platform/gsc/gsc/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/makefile.in -------------------------------------------------------------------------------- /platform/gsc/gsc/runtests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsc/runtests.scm -------------------------------------------------------------------------------- /platform/gsc/gsi/_gambcgsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsi/_gambcgsi.c -------------------------------------------------------------------------------- /platform/gsc/gsi/_gambitgsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsi/_gambitgsi.c -------------------------------------------------------------------------------- /platform/gsc/gsi/_gsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsi/_gsi.c -------------------------------------------------------------------------------- /platform/gsc/gsi/_gsi.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsi/_gsi.scm -------------------------------------------------------------------------------- /platform/gsc/gsi/_gsi_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsi/_gsi_.c -------------------------------------------------------------------------------- /platform/gsc/gsi/_gsilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsi/_gsilib.c -------------------------------------------------------------------------------- /platform/gsc/gsi/_gsilib.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsi/_gsilib.scm -------------------------------------------------------------------------------- /platform/gsc/gsi/main.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsi/main.scm -------------------------------------------------------------------------------- /platform/gsc/gsi/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/gsi/makefile.in -------------------------------------------------------------------------------- /platform/gsc/include/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/include/config.h.in -------------------------------------------------------------------------------- /platform/gsc/include/gambit.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/include/gambit.h.in -------------------------------------------------------------------------------- /platform/gsc/include/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/include/makefile.in -------------------------------------------------------------------------------- /platform/gsc/include/stamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/include/stamp.h -------------------------------------------------------------------------------- /platform/gsc/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/install-sh -------------------------------------------------------------------------------- /platform/gsc/lib/_eval#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_eval#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_eval.c -------------------------------------------------------------------------------- /platform/gsc/lib/_eval.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_eval.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_gambit#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_gambit#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_gambit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_gambit.c -------------------------------------------------------------------------------- /platform/gsc/lib/_io#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_io#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_io.c -------------------------------------------------------------------------------- /platform/gsc/lib/_io.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_io.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_kernel#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_kernel#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_kernel.c -------------------------------------------------------------------------------- /platform/gsc/lib/_kernel.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_kernel.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_nonstd#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_nonstd#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_nonstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_nonstd.c -------------------------------------------------------------------------------- /platform/gsc/lib/_nonstd.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_nonstd.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_num#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_num#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_num.c -------------------------------------------------------------------------------- /platform/gsc/lib/_num.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_num.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_repl#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_repl#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_repl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_repl.c -------------------------------------------------------------------------------- /platform/gsc/lib/_repl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_repl.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_std#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_std#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_std.c -------------------------------------------------------------------------------- /platform/gsc/lib/_std.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_std.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_syntax-boot.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_syntax-boot.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_syntax-xform.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_syntax-xform.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_syntax.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_syntax.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_system#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_system#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_system.c -------------------------------------------------------------------------------- /platform/gsc/lib/_system.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_system.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_thread#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_thread#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_thread.c -------------------------------------------------------------------------------- /platform/gsc/lib/_thread.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_thread.scm -------------------------------------------------------------------------------- /platform/gsc/lib/_univlib.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/_univlib.scm -------------------------------------------------------------------------------- /platform/gsc/lib/actlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/actlog.c -------------------------------------------------------------------------------- /platform/gsc/lib/actlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/actlog.h -------------------------------------------------------------------------------- /platform/gsc/lib/c_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/c_intf.c -------------------------------------------------------------------------------- /platform/gsc/lib/c_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/c_intf.h -------------------------------------------------------------------------------- /platform/gsc/lib/check___P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/check___P -------------------------------------------------------------------------------- /platform/gsc/lib/check___P.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/check___P.st -------------------------------------------------------------------------------- /platform/gsc/lib/dead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/dead.h -------------------------------------------------------------------------------- /platform/gsc/lib/digest#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/digest#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/digest.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/digest.scm -------------------------------------------------------------------------------- /platform/gsc/lib/gambit#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/gambit#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/guide/_guide#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/guide/_guide#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/guide/_guide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/guide/_guide.c -------------------------------------------------------------------------------- /platform/gsc/lib/guide/_guide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/guide/_guide.h -------------------------------------------------------------------------------- /platform/gsc/lib/guide/_guide.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/guide/_guide.scm -------------------------------------------------------------------------------- /platform/gsc/lib/guide/guide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/guide/guide.cpp -------------------------------------------------------------------------------- /platform/gsc/lib/guide/guide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/guide/guide.h -------------------------------------------------------------------------------- /platform/gsc/lib/guide/guidepro.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/guide/guidepro.in -------------------------------------------------------------------------------- /platform/gsc/lib/guide/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/guide/makefile.in -------------------------------------------------------------------------------- /platform/gsc/lib/header.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/header.scm -------------------------------------------------------------------------------- /platform/gsc/lib/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/main.c -------------------------------------------------------------------------------- /platform/gsc/lib/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/makefile.in -------------------------------------------------------------------------------- /platform/gsc/lib/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/mem.c -------------------------------------------------------------------------------- /platform/gsc/lib/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/mem.h -------------------------------------------------------------------------------- /platform/gsc/lib/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os.c -------------------------------------------------------------------------------- /platform/gsc/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os.h -------------------------------------------------------------------------------- /platform/gsc/lib/os_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_base.c -------------------------------------------------------------------------------- /platform/gsc/lib/os_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_base.h -------------------------------------------------------------------------------- /platform/gsc/lib/os_dyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_dyn.c -------------------------------------------------------------------------------- /platform/gsc/lib/os_dyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_dyn.h -------------------------------------------------------------------------------- /platform/gsc/lib/os_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_files.c -------------------------------------------------------------------------------- /platform/gsc/lib/os_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_files.h -------------------------------------------------------------------------------- /platform/gsc/lib/os_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_io.c -------------------------------------------------------------------------------- /platform/gsc/lib/os_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_io.h -------------------------------------------------------------------------------- /platform/gsc/lib/os_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_shell.c -------------------------------------------------------------------------------- /platform/gsc/lib/os_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_shell.h -------------------------------------------------------------------------------- /platform/gsc/lib/os_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_thread.c -------------------------------------------------------------------------------- /platform/gsc/lib/os_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_thread.h -------------------------------------------------------------------------------- /platform/gsc/lib/os_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_time.c -------------------------------------------------------------------------------- /platform/gsc/lib/os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_time.h -------------------------------------------------------------------------------- /platform/gsc/lib/os_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_tty.c -------------------------------------------------------------------------------- /platform/gsc/lib/os_tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/os_tty.h -------------------------------------------------------------------------------- /platform/gsc/lib/psyntax69c.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/psyntax69c.pp -------------------------------------------------------------------------------- /platform/gsc/lib/psyntax69c.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/psyntax69c.ss -------------------------------------------------------------------------------- /platform/gsc/lib/psyntax73.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/psyntax73.pp -------------------------------------------------------------------------------- /platform/gsc/lib/psyntax73.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/psyntax73.ss -------------------------------------------------------------------------------- /platform/gsc/lib/r4rs#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/r4rs#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/r5rs#.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/r5rs#.scm -------------------------------------------------------------------------------- /platform/gsc/lib/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/setup.c -------------------------------------------------------------------------------- /platform/gsc/lib/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/setup.h -------------------------------------------------------------------------------- /platform/gsc/lib/syntax-case-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/syntax-case-build -------------------------------------------------------------------------------- /platform/gsc/lib/syntax-case.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/syntax-case.scm -------------------------------------------------------------------------------- /platform/gsc/lib/sys.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/lib/sys.scm -------------------------------------------------------------------------------- /platform/gsc/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/makefile.in -------------------------------------------------------------------------------- /platform/gsc/misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/README -------------------------------------------------------------------------------- /platform/gsc/misc/bench-gccs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/bench-gccs -------------------------------------------------------------------------------- /platform/gsc/misc/bench.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/bench.tgz -------------------------------------------------------------------------------- /platform/gsc/misc/build-gambit-iOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/build-gambit-iOS -------------------------------------------------------------------------------- /platform/gsc/misc/changev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/changev -------------------------------------------------------------------------------- /platform/gsc/misc/changev1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/changev1 -------------------------------------------------------------------------------- /platform/gsc/misc/conf_bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_bor -------------------------------------------------------------------------------- /platform/gsc/misc/conf_bor.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_bor.sed -------------------------------------------------------------------------------- /platform/gsc/misc/conf_bpp.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_bpp.sed -------------------------------------------------------------------------------- /platform/gsc/misc/conf_dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_dj -------------------------------------------------------------------------------- /platform/gsc/misc/conf_dj.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_dj.sed -------------------------------------------------------------------------------- /platform/gsc/misc/conf_dpp.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_dpp.sed -------------------------------------------------------------------------------- /platform/gsc/misc/conf_lcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_lcc -------------------------------------------------------------------------------- /platform/gsc/misc/conf_lcc.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_lcc.sed -------------------------------------------------------------------------------- /platform/gsc/misc/conf_mpp.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_mpp.sed -------------------------------------------------------------------------------- /platform/gsc/misc/conf_msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_msc -------------------------------------------------------------------------------- /platform/gsc/misc/conf_msc.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_msc.sed -------------------------------------------------------------------------------- /platform/gsc/misc/conf_wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_wat -------------------------------------------------------------------------------- /platform/gsc/misc/conf_wat.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_wat.sed -------------------------------------------------------------------------------- /platform/gsc/misc/conf_win.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_win.sed -------------------------------------------------------------------------------- /platform/gsc/misc/conf_wpp.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/conf_wpp.sed -------------------------------------------------------------------------------- /platform/gsc/misc/gambit.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/gambit.el -------------------------------------------------------------------------------- /platform/gsc/misc/install-gnu-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/install-gnu-gcc -------------------------------------------------------------------------------- /platform/gsc/misc/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/makefile.in -------------------------------------------------------------------------------- /platform/gsc/misc/openwatcom.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/openwatcom.bat -------------------------------------------------------------------------------- /platform/gsc/misc/proj_bor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/proj_bor.zip -------------------------------------------------------------------------------- /platform/gsc/misc/proj_cw.hqx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/proj_cw.hqx -------------------------------------------------------------------------------- /platform/gsc/misc/proj_msc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/proj_msc.zip -------------------------------------------------------------------------------- /platform/gsc/misc/proj_wat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/proj_wat.zip -------------------------------------------------------------------------------- /platform/gsc/misc/publish-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/publish-release -------------------------------------------------------------------------------- /platform/gsc/misc/set-regs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/set-regs -------------------------------------------------------------------------------- /platform/gsc/misc/vc2008.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/vc2008.bat -------------------------------------------------------------------------------- /platform/gsc/misc/vcexpress.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/vcexpress.bat -------------------------------------------------------------------------------- /platform/gsc/misc/vctoolkit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/vctoolkit.bat -------------------------------------------------------------------------------- /platform/gsc/misc/vstudio.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/misc/vstudio.zip -------------------------------------------------------------------------------- /platform/gsc/mkidirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/mkidirs -------------------------------------------------------------------------------- /platform/gsc/prebuilt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/prebuilt/README -------------------------------------------------------------------------------- /platform/gsc/prebuilt/macosx/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/prebuilt/macosx/build -------------------------------------------------------------------------------- /platform/gsc/prebuilt/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/prebuilt/makefile.in -------------------------------------------------------------------------------- /platform/gsc/relpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/relpath -------------------------------------------------------------------------------- /platform/gsc/tests/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/client.c -------------------------------------------------------------------------------- /platform/gsc/tests/debug.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/debug.scm -------------------------------------------------------------------------------- /platform/gsc/tests/error.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/error.scm -------------------------------------------------------------------------------- /platform/gsc/tests/input: -------------------------------------------------------------------------------- 1 | the 2 | quick 3 | brown 4 | fox 5 | jumps 6 | over 7 | the 8 | lazy 9 | dog 10 | -------------------------------------------------------------------------------- /platform/gsc/tests/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/makefile.in -------------------------------------------------------------------------------- /platform/gsc/tests/mem.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/mem.scm -------------------------------------------------------------------------------- /platform/gsc/tests/mix.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/mix.scm -------------------------------------------------------------------------------- /platform/gsc/tests/r4rstest.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/r4rstest.scm -------------------------------------------------------------------------------- /platform/gsc/tests/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/server.h -------------------------------------------------------------------------------- /platform/gsc/tests/server.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/server.scm -------------------------------------------------------------------------------- /platform/gsc/tests/test1.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/test1.ok -------------------------------------------------------------------------------- /platform/gsc/tests/test10.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/test10.scm -------------------------------------------------------------------------------- /platform/gsc/tests/test2.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/test2.ok -------------------------------------------------------------------------------- /platform/gsc/tests/test3.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/test3.ok -------------------------------------------------------------------------------- /platform/gsc/tests/test4.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/test4.ok -------------------------------------------------------------------------------- /platform/gsc/tests/test5.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/test5.ok -------------------------------------------------------------------------------- /platform/gsc/tests/test6.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/test6.ok -------------------------------------------------------------------------------- /platform/gsc/tests/test7.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/test7.ok -------------------------------------------------------------------------------- /platform/gsc/tests/test8.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/test8.ok -------------------------------------------------------------------------------- /platform/gsc/tests/test9.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/gsc/tests/test9.ok -------------------------------------------------------------------------------- /platform/gsc/tests/unit-tests/00-check/#.scm: -------------------------------------------------------------------------------- 1 | (include "../#.scm") 2 | -------------------------------------------------------------------------------- /platform/gsc/tests/unit-tests/02-flonum/#.scm: -------------------------------------------------------------------------------- 1 | (include "../#.scm") 2 | -------------------------------------------------------------------------------- /platform/gsc/tests/unit-tests/05-serdes/#.scm: -------------------------------------------------------------------------------- 1 | (include "../#.scm") 2 | -------------------------------------------------------------------------------- /platform/gsc/tests/unit-tests/06-thread/#.scm: -------------------------------------------------------------------------------- 1 | (include "../#.scm") 2 | -------------------------------------------------------------------------------- /platform/gsc/tests/unit-tests/07-vector/#.scm: -------------------------------------------------------------------------------- 1 | (include "../#.scm") 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/ChangeLog -------------------------------------------------------------------------------- /platform/libffi-3.2.1/ChangeLog.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/ChangeLog.v1 -------------------------------------------------------------------------------- /platform/libffi-3.2.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/LICENSE -------------------------------------------------------------------------------- /platform/libffi-3.2.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/Makefile.am -------------------------------------------------------------------------------- /platform/libffi-3.2.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/Makefile.in -------------------------------------------------------------------------------- /platform/libffi-3.2.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/README -------------------------------------------------------------------------------- /platform/libffi-3.2.1/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/acinclude.m4 -------------------------------------------------------------------------------- /platform/libffi-3.2.1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/aclocal.m4 -------------------------------------------------------------------------------- /platform/libffi-3.2.1/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/compile -------------------------------------------------------------------------------- /platform/libffi-3.2.1/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/config.guess -------------------------------------------------------------------------------- /platform/libffi-3.2.1/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/config.sub -------------------------------------------------------------------------------- /platform/libffi-3.2.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/configure -------------------------------------------------------------------------------- /platform/libffi-3.2.1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/configure.ac -------------------------------------------------------------------------------- /platform/libffi-3.2.1/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/depcomp -------------------------------------------------------------------------------- /platform/libffi-3.2.1/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/install-sh -------------------------------------------------------------------------------- /platform/libffi-3.2.1/libffi.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/libffi.pc.in -------------------------------------------------------------------------------- /platform/libffi-3.2.1/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/ltmain.sh -------------------------------------------------------------------------------- /platform/libffi-3.2.1/m4/asmcfi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/m4/asmcfi.m4 -------------------------------------------------------------------------------- /platform/libffi-3.2.1/man/ffi.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/man/ffi.3 -------------------------------------------------------------------------------- /platform/libffi-3.2.1/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/mdate-sh -------------------------------------------------------------------------------- /platform/libffi-3.2.1/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/missing -------------------------------------------------------------------------------- /platform/libffi-3.2.1/msvcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/msvcc.sh -------------------------------------------------------------------------------- /platform/libffi-3.2.1/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/src/debug.c -------------------------------------------------------------------------------- /platform/libffi-3.2.1/src/pa/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/src/pa/ffi.c -------------------------------------------------------------------------------- /platform/libffi-3.2.1/src/sh/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/src/sh/ffi.c -------------------------------------------------------------------------------- /platform/libffi-3.2.1/src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/src/types.c -------------------------------------------------------------------------------- /platform/libffi-3.2.1/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | load_lib "standard.exp" 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/platform/libffi-3.2.1/texinfo.tex -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/include/ffitarget.h: -------------------------------------------------------------------------------- 1 | ../../src/x86/ffitarget.h -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/.deps/debug.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/aarch64/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/aarch64/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/alpha/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/alpha/.deps/osf.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/arc/.deps/arcompact.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/arc/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/arm/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/arm/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/arm/.deps/trampoline.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/avr32/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/avr32/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/bfin/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/bfin/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/cris/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/cris/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/frv/.deps/eabi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/frv/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/ia64/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/ia64/.deps/unix.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/m32r/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/m32r/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/m68k/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/m68k/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/m88k/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/m88k/.deps/obsd.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/metag/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/metag/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/microblaze/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/microblaze/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/mips/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/mips/.deps/n32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/mips/.deps/o32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/moxie/.deps/eabi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/moxie/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/nios2/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/nios2/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/or1k/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/or1k/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/pa/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/pa/.deps/hpux32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/pa/.deps/linux.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/aix.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/aix_closure.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/darwin.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/darwin_closure.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/ffi_darwin.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/ffi_linux64.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/ffi_sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/linux64.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/linux64_closure.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/ppc_closure.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/powerpc/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/s390/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/s390/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/sh/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/sh/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/sh64/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/sh64/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/sparc/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/sparc/.deps/v8.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/sparc/.deps/v9.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/tile/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/tile/.deps/tile.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/vax/.deps/elfbsd.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/vax/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/x86/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/x86/.deps/freebsd.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/x86/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/x86/.deps/unix64.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/x86/.deps/win32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/x86/.deps/win64.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/x86/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/xtensa/.deps/ffi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/src/xtensa/.deps/sysv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /platform/libffi-3.2.1/x86_64-apple-darwin14.5.0/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for fficonfig.h 2 | -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/core/a.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/a.scm -------------------------------------------------------------------------------- /src/core/array.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/array.scm -------------------------------------------------------------------------------- /src/core/bitvect.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/bitvect.scm -------------------------------------------------------------------------------- /src/core/char.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/char.scm -------------------------------------------------------------------------------- /src/core/compiler.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/compiler.scm -------------------------------------------------------------------------------- /src/core/consts.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/consts.scm -------------------------------------------------------------------------------- /src/core/extn.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/extn.scm -------------------------------------------------------------------------------- /src/core/ffi.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/ffi.scm -------------------------------------------------------------------------------- /src/core/ilcodegen.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/ilcodegen.scm -------------------------------------------------------------------------------- /src/core/libffi.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/libffi.scm -------------------------------------------------------------------------------- /src/core/list.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/list.scm -------------------------------------------------------------------------------- /src/core/lpair.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/lpair.scm -------------------------------------------------------------------------------- /src/core/match.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/match.scm -------------------------------------------------------------------------------- /src/core/ns.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/ns.scm -------------------------------------------------------------------------------- /src/core/number.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/number.scm -------------------------------------------------------------------------------- /src/core/os.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/os.scm -------------------------------------------------------------------------------- /src/core/package.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/package.scm -------------------------------------------------------------------------------- /src/core/parallel.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/parallel.scm -------------------------------------------------------------------------------- /src/core/stream.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/stream.scm -------------------------------------------------------------------------------- /src/core/string.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/string.scm -------------------------------------------------------------------------------- /src/core/syntax.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/syntax.scm -------------------------------------------------------------------------------- /src/core/table.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/table.scm -------------------------------------------------------------------------------- /src/core/task.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/task.scm -------------------------------------------------------------------------------- /src/core/tokenizer.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/tokenizer.scm -------------------------------------------------------------------------------- /src/core/util.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/util.scm -------------------------------------------------------------------------------- /src/core/z.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/core/z.scm -------------------------------------------------------------------------------- /src/include/slogan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/include/slogan.h -------------------------------------------------------------------------------- /src/repl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/src/repl.scm -------------------------------------------------------------------------------- /test/a.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/a.sn -------------------------------------------------------------------------------- /test/basic.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/basic.sn -------------------------------------------------------------------------------- /test/fp.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/fp.sn -------------------------------------------------------------------------------- /test/lazy.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/lazy.sn -------------------------------------------------------------------------------- /test/package.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/package.sn -------------------------------------------------------------------------------- /test/parconc.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/parconc.sn -------------------------------------------------------------------------------- /test/simple_package/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/simple_package/build -------------------------------------------------------------------------------- /test/simple_package/init.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/simple_package/init.sn -------------------------------------------------------------------------------- /test/simple_package/src/test_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/simple_package/src/test_ffi.c -------------------------------------------------------------------------------- /test/test.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/test.sn -------------------------------------------------------------------------------- /test/v011_2.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v011_2.sn -------------------------------------------------------------------------------- /test/v011_3.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v011_3.sn -------------------------------------------------------------------------------- /test/v011_4.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v011_4.sn -------------------------------------------------------------------------------- /test/v011_5.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v011_5.sn -------------------------------------------------------------------------------- /test/v011_8.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v011_8.sn -------------------------------------------------------------------------------- /test/v011_9.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v011_9.sn -------------------------------------------------------------------------------- /test/v011_96.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v011_96.sn -------------------------------------------------------------------------------- /test/v011_97.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v011_97.sn -------------------------------------------------------------------------------- /test/v011_98.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v011_98.sn -------------------------------------------------------------------------------- /test/v012_1.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v012_1.sn -------------------------------------------------------------------------------- /test/v012_2.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v012_2.sn -------------------------------------------------------------------------------- /test/v012_3.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v012_3.sn -------------------------------------------------------------------------------- /test/v012_4.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v012_4.sn -------------------------------------------------------------------------------- /test/v012_6.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v012_6.sn -------------------------------------------------------------------------------- /test/v061.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v061.sn -------------------------------------------------------------------------------- /test/v08.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/v08.sn -------------------------------------------------------------------------------- /test/yield.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaymathew/slogan/HEAD/test/yield.sn --------------------------------------------------------------------------------