A search for all occurrences of a substring inside a string.
Name: strings.index_all.odin
Author: João Carvalho
Date: 2023.08.13
Description: This is my first program in the fantastic Odin programming
language on Linux.
License: MIT Open Source License
To run this program you need to install the Odin compiler and the Odin ols plugin in your preferred text editor:
# To compile for debug do:
$ odin build strings.index_all.odin -file -vet -debug
# To compile for release do:
$ odin build strings.index_all.odin -file
# To run the program do this:
$ ./strings
# Or do this:
$ odin run strings.index_all.odin -file- The Odin site - http://odin-lang.org/
- Odin documentation - http://odin-lang.org/docs/
- Odin demo code file - https://github.com/odin-lang/Odin/blob/master/examples/demo/demo.odin
- Odin examples - https://github.com/odin-lang/examples
- Video - Odin - ThePrimoGen gingerBill Interview - https://www.youtube.com/watch?v=nVa9mgRcVPs
- Video - Odin - Context Free - Interview with Odin language creator gingerBill - https://www.youtube.com/watch?v=2YLA4ajby00
João Carvalho