Number names: Difference between revisions

Deleted AutoHotkey. If the example referred to is ever retrieved, it can be put here in place of the incorrect solution.
(Added a description as per User talk:NevilleDNZ#Number Names??.)
(Deleted AutoHotkey. If the example referred to is ever retrieved, it can be put here in place of the incorrect solution.)
Line 178:
<lang algol68>n? 43112609
forty-three million, one hundred and twelve thousand, six hundred and nine</lang>
=={{header|AutoHotkey}}==
Note: Whoever wrote this code missed the point. I have a good example on my other computer, next time it boots, I'll post it. It goes from 0 to 999,999,999 at the moment, adding negative suport (should be easy) next time I touch it.
<lang AutoHotkey>x = 2
y = 2
MsgBox % x + y ; 4
MsgBox % x . y ; 22 not 4</lang>
 
=={{header|BASIC}}==
845

edits