Hacker News new | past | comments | ask | show | jobs | submit login

In Go "Numeric constants represent exact values of arbitrary precision"

https://golang.org/ref/spec#Constants




I don't think Go qualifies as a 'scripting language', even though the term is very loosely defined.


I missed the part about scripting languages. Is LISP a scripting language?


Yes.

1. Most Lisp dialects, including Scheme and ANSI Lisp, have interactive modes for evaluating expressions.

2. Most Lisp dialects have a mode of processing files in the same manner: reading individual forms and evaluating them immediately. I.e. it is not necessary to translate files into objects that have to be linked to produce an executable program.


This is only true for values calculated at compile time. Once the result is stored in a variable it is converted to a fixed-size representation. All runtime calculations and results are fixed size.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: