tomo/examples
2025-04-02 16:19:57 -04:00
..
base64 Rename without_escaping() -> from_text() 2025-03-12 18:12:53 -04:00
colorful Fix some pattern usages 2025-04-01 20:10:17 -04:00
commands Syntax change: table types are now: {K=V; default=...} and tables 2025-04-02 16:14:20 -04:00
core Moved RNG out of the compiler and into a standalone library 2025-04-01 16:55:24 -04:00
game Move patterns into a module 2025-04-01 14:05:10 -04:00
http Further support for .dylib files on mac by changing syntax for library 2025-03-30 15:41:37 -04:00
http-server Move HTML into script 2025-04-02 16:19:57 -04:00
ini Syntax change: table types are now: {K=V; default=...} and tables 2025-04-02 16:14:20 -04:00
log Support iterating over pointers to collections again 2024-11-09 17:54:32 -05:00
patterns Syntax change: table types are now: {K=V; default=...} and tables 2025-04-02 16:14:20 -04:00
pthreads Tweak threads code 2025-04-01 20:59:20 -04:00
random Rename default RNG to random 2025-04-01 21:03:45 -04:00
shell Change commands interface so it can either run or get result 2025-03-24 15:16:56 -04:00
time Clean up and improve patterns 2025-04-01 15:15:28 -04:00
tomo-install Fix some pattern usages 2025-04-01 20:10:17 -04:00
tomodeps Clean up and improve patterns 2025-04-01 15:15:28 -04:00
vectors Add some vector methods 2025-03-10 16:02:16 -04:00
wrap Overhaul of Path so it uses root and array of components instead of 2025-03-15 14:22:11 -04:00
learnxiny.tm Syntax change: table types are now: {K=V; default=...} and tables 2025-04-02 16:14:20 -04:00
README.md Add http-server example 2025-04-01 21:15:17 -04:00

Examples

This folder contains some example programs and libraries.

Example Programs

  • learnxiny.tm: A quick overview of language features in the
  • game: An example game using raylib.
  • http-server: A multithreaded HTTP server.
  • tomodeps: A library for finding Tomo dependencies.
  • tomo-install: A library for installing Tomo dependencies.

Example Libraries

Libraries can be installed with tomo -IL ./library-folder

  • base64: A base64 encoding/decoding library.
  • colorful: A DSL useful for rendering terminal colors.
  • commands: A library for running commands.
  • core: Bundling up commonly used libraries into a single library.
  • http: An HTTP library to make basic synchronous HTTP requests.
  • ini: An INI configuration file reader tool. style of learnxinyminutes.com.
  • log: A logging utility.
  • patterns: Pattern matching for text.
  • pthreads: A POSIX threads library.
  • random: Pseudorandom number generators.
  • shell: A DSL for running shell commands.
  • time: A module for working with dates and times.
  • vectors: A math vector library.
  • uuid: A universally unique identifier library.
  • wrap: A command-line program to wrap text.