just tried building some flx code I hadn't touched for a while
and "slice" has become a reserved word. What's the other
slice do?

[build_tables] Cannot overload slice<5868> with non-function slice<2560>
In flx/hw.flx: line 974 col 1 to  line 980 col 2
973:
974: proc slice(sm: smash_spr) {
975:    play_sound(SLICE_SND);
976:    //should this have blood?
977:    //run_anim(mk_animplay(sm, DEATH_ANIM+5), sm);
978:    var an = mk_animplay(sm, DEATH_ANIM+5);
979:    run_anim(an, sm);
980: };
981:

See also /Users/rfistman/felix_svn/lib/std.flx: line 65 col 3 to  line 71 col 3
64: publish "slice type"
65:   union slice[T] =
66:     | Slice_all
67:     | Slice_from of T
68:     | Slice_to of T
69:     | Slice_range of T * T
70:     | Slice_one of T
71:   ;

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Felix-language mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/felix-language

Reply via email to