buzz-language / buzz

👨‍🚀 buzz, A small/lightweight statically typed scripting language
https://buzz-lang.dev
MIT License
1.15k stars 31 forks source link

Infer type of variable from its value #194

Closed giann closed 9 months ago

giann commented 9 months ago
var aString = "hello";

assert(aString is str);

const aNumber = 12;

assert(aNumber is int);