可变浮点变量条件 Gforth
Variable floating point variable conditional Gforth
要扩展这个,我该如何使用变量来做到这一点?
fvariable foo 6.2e foo f!
fvariable boo 8.2e boo f!
boo @ foo @ f> // How is this done?
您使用 f@
和 f!
访问浮点变量。
boo f@ foo f@ f>
要扩展这个,我该如何使用变量来做到这一点?
fvariable foo 6.2e foo f!
fvariable boo 8.2e boo f!
boo @ foo @ f> // How is this done?
您使用 f@
和 f!
访问浮点变量。
boo f@ foo f@ f>