Toyokazu Tomatsu
Posts: 66
Nickname: tomatsu
Registered: Jul, 2003
|
Toyokazu Tomatsu is a developer of Pnuts.
|
|
|
|
Pnuts Updates (Constants, POSIX, super, etc.)
|
Posted: Apr 9, 2004 4:29 PM
|
|
|
Advertisement
|
Changes in version 20040326:
- 1) Added constant to pnuts.lib module.
constant.PI = 3.14
PI ==> 3.14
PI = 3 ==> error
- 2) Extended subclass() so that super can be used.
cg = classGenerator()
hello = cg.subclass("Hello", Object,
$(function toString(super) {
println("called")
super.toString()
}), false, true)
hello()
- 3) Added posix module(Need to get -src.zip and compile)
- - symbol link
- - UID, GID, PID, permission
- - syslog
- - signal
- - etc.
- 4) Added Close menu item to VisualDebugger window
- 5) API Changes:
- 6) Bug fixes in pure interpreter.
Read: Pnuts Updates (Constants, POSIX, super, etc.)
|
|