This website requires JavaScript.
Explore
Help
Sign In
steve
/
factor
Watch
1
Star
0
Fork
You've already forked factor
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
a501e3d462
factor
/
basis
/
tools
/
deploy
/
test
/
1
/
1.factor
7 lines
108 B
Factor
Raw
Normal View
History
Unescape
Escape
Tree-shaker now computes which globals it needs to strip, not which ones it needs to keep
2008-03-13 04:46:25 -04:00
IN:
tools.deploy.test.1
USING:
threads
;
Replace millis primitive with micros primitive Add millis as a library word sleep now takes either a duration or a microsecond count; code using durations doens't need to be updated, code using millisecond counts updated to use durations for the most part
2008-11-19 02:50:05 -05:00
:
deploy-test-1
(
--
)
1000000
sleep
;
Tree-shaker now computes which globals it needs to strip, not which ones it needs to keep
2008-03-13 04:46:25 -04:00
MAIN:
deploy-test-1