Re: [fpc-pascal] Threading vs Parallelism ?

2017-03-29 Thread Ryan Gonzalez
Parallelism is what hipster Node programmers do, threads are everything else. /jk -- Ryan (ライアン) Yoko Shimomura > ryo (supercell/EGOIST) > Hiroyuki Sawano >> everyone else http://refi64.com On Mar 29, 2017 1:57 PM, "fredvs" wrote: > Hello. > > Some developers treat me as dinosaur because I use

Re: [fpc-pascal] Java equivalent of Pascal's class reference functionality

2016-06-08 Thread Ryan Gonzalez
Not sure about your question exactly, but everything in Java is passed by reference, and all objects are covariant, so you shouldn't need to do anything. On Wed, Jun 8, 2016 at 6:17 PM, Graeme Geldenhuys < mailingli...@geldenhuys.co.uk> wrote: > Hi, > > I know this is not a Java forum, but though

[fpc-pascal] How do record variants without a field name?

2016-04-09 Thread Ryan Gonzalez
I posted this to Stack Overflow ( http://stackoverflow.com/questions/36504292/iso-pascal-record-variants-without-a-field-name), but it hasn't gotten any feedback. So, here I go... Free Pascal allows you to do this: type RPoint = Record Case Boolean of False : (X,Y,Z : Real); True : (R,t