Who am I?
I'm Ankit Bishnoi, 19 years old from India.
Skills: JavaScript, TypeScript, React, HTML/CSS, Python, MongoDB, SQL, Ethical Hacking, Social Media.
GitHub: @ankitkhileryy
What I built
Akro — a minimal programming language that runs entirely in the browser.
The name comes from my initials "AK". Personal name, universal language.
No install needed → try it now: akro-lang.dev/playground
What it looks like
akro
fn main {
name := "World"
say "Hello, {name}!"
nums := [1, 2, 3, 4, 5]
total := reduce(nums, fn(a, b) { return a + b }, 0)
say "Sum = {total}"
grade := match 87 {
case 90..100 { "A" }
case 80..89 { "B" }
case _ { "C or below" }
}
say "Grade: {grade}"
}
Top comments (0)