string-token.sml
来自「这是我们参加06年全国开源软件的竞赛作品」· SML 代码 · 共 16 行
SML
16 行
(* string-token.sml * * COPYRIGHT (c) 1998 Bell Labs, Lucent Technologies. * * A trivial implementation of tokens as strings w/o style information. *)structure StringToken : PP_TOKEN = struct type style = unit type token = string fun string s = s fun style _ = () fun size s = String.size s end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?