The SK
Programming
Language
SK is a high-level interpreted language built to handle incomplete, approximate, or partially known information seamlessly. Completely written in Rust for safety and speed.
Designed to be simple and intuitive — functions, loops, conditionals, fuzzy ranges, and much more. All out of the box.
import time
fn temp(base = 0) {
let temperature = [17..23]
print("Temperature is", temperature + base)
}
for day in ["Monday", "Tuesday", "Wednesday"] {
print("Today is", day)
print("Time", time.format(time.now()))
temp(3)
}