Mercurial > repos > tabletprog
view samples/numparse.tp @ 370:57d78a0af132
Add code to socket module to allow listening for incoming connections
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Wed, 12 Aug 2015 19:13:31 -0700 |
parents | 74cab9b5f2a4 |
children |
line wrap: on
line source
#{ main <- { print: "42: " . ("42" int32) . ", -42: " . ("-42" int32) . "\n" print: "2147483647: " . ("2147483647" int32) . ", -2147483648: " . ("-2147483648" int32) . "\n" print: "1.23456789: " . ("1.23456789" parseFloat64) . "\n" } }