Skip to content

Instantly share code, notes, and snippets.

View alob-mtc's full-sized avatar
🏠
Working from home

Akinlua Bolamigbe alob-mtc

🏠
Working from home
View GitHub Profile
@alob-mtc
alob-mtc / Readme.md
Last active August 12, 2026 17:57
ProScript Language Spec

The ProScript Programming Language

Language Specification 0.1

ProScript is a statically typed, garbage-collected programming language for highly concurrent application software. It is designed primarily for web services and secondarily for command-line applications.

ProScript combines:

@alob-mtc
alob-mtc / lib.rs
Last active September 17, 2023 15:41
An Implementation of a String Split [str str::split()] from the std
pub trait Delimiter {
fn find_next(&self, s: &str) -> Option<(usize, usize)>;
}
impl Delimiter for &str {
fn find_next(&self, s: &str) -> Option<(usize, usize)> {
s.find(self).map(|start| (start, start + self.len()))
}
}