Comment on The Algol 68 Genie projectparentComments−int_19h3y"INT a" would just declare a local immutable binding of type integer."LOC INT a" would be syntactic sugar for "REF INT a = LOC INT", which would be something akin to "int *a = alloca(sizeof(int))".
Comments
"INT a" would just declare a local immutable binding of type integer.
"LOC INT a" would be syntactic sugar for "REF INT a = LOC INT", which would be something akin to "int *a = alloca(sizeof(int))".