kevinlawler / kona

Open-source implementation of the K programming language
ISC License
1.36k stars 138 forks source link

Absolute Value #576

Closed tavmem closed 4 years ago

tavmem commented 4 years ago

This may be a minor point ... but the result should be the same.

K 2.8 2000-10-10 Copyright (C) 1993-2000 Kx Systems 
\ for help. \\ to exit.

  _abs 2
2.0
kona      \ for help. \\ to exit.

  _abs 2
2
bakul commented 4 years ago

This changed in k 3.2 and _abs 2 now produces 2 and not 2.0

tavmem commented 4 years ago

Thanks !!!