Skip to content

Commit

Permalink
Add ASCII multiplier for loops.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabordemooij committed Aug 13, 2024
1 parent 88493bb commit a9356e2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions world.c
Original file line number Diff line number Diff line change
Expand Up @@ -842,6 +842,7 @@ void ctr_initialize_world() {
ctr_internal_create_func(CtrStdBlock, ctr_build_string_from_cstring( CTR_DICT_ERROR ), &ctr_block_error );
ctr_internal_create_func(CtrStdBlock, ctr_build_string_from_cstring( CTR_DICT_CATCH ), &ctr_block_catch );
ctr_internal_create_func(CtrStdBlock, ctr_build_string_from_cstring( CTR_DICT_MULTIPLIER ), &ctr_block_times );
ctr_internal_create_func(CtrStdBlock, ctr_build_string_from_cstring( "*" ), &ctr_block_times );
ctr_internal_create_func(CtrStdBlock, ctr_build_string_from_cstring( CTR_DICT_PROCEDURE ), &ctr_block_procedure );
ctr_internal_create_func(CtrStdBlock, ctr_build_string_from_cstring( CTR_DICT_WHILE ), &ctr_block_while_true );
ctr_internal_create_func(CtrStdBlock, ctr_build_string_from_cstring( CTR_DICT_TOSTRING ), &ctr_block_to_string );
Expand Down

0 comments on commit a9356e2

Please sign in to comment.