ganit-core 0.1.1

Spreadsheet formula engine — parser and evaluator for Excel-compatible formulas
Documentation
1
2
3
4
5
6
Test: Create Context with lowercase key "var"
Call context.get("VAR") 
Expected: Should find the value because get() converts "VAR" to uppercase "VAR"
Actual behavior: Will NOT find it because HashMap has "var", not "VAR"

This indicates a SPEC MISMATCH: Context does NOT implement true case-insensitive lookup.