(no title)
librasteve | 10 days ago
Here's a very simple, lexical declaration made more human friendly by use of the preposition `my` (or `our` if it is packaged scoped)...
my $x = 42;librasteve | 10 days ago
Here's a very simple, lexical declaration made more human friendly by use of the preposition `my` (or `our` if it is packaged scoped)...
my $x = 42;
j_w|10 days ago
x := 42
Or
let x = 42
Or
x = 42
It seems like a regression from modern languages.
bmn__|6 days ago
Example 1 and 3 are not declarations, so apples ↔ oranges
grey-area|9 days ago
Your example is not compelling I’m afraid but you should try building a language to see. Also read literate programming if you haven’t already.