我确信在Haskell类型中总是在运行时之前擦除.在Agda的情况下会发生什么?
是否将依赖类型信息传递给运行时?
我有一个 R 文件的结果,如下所示:
filename totalvar result runtime
file1 100 0 20.45
file2 400 4 4.50
...
filen 200 1 2.00
Run Code Online (Sandbox Code Playgroud)
某些文件名包含奇怪的字符,因此我必须为其添加引号。使用 VIM 为每行的第一个单词添加引号的最简单方法是什么?就像是
filename totalvar result runtime
"file1" 100 0 20.45
"file2" 400 4 4.50
...
"filen" 200 1 2.00
Run Code Online (Sandbox Code Playgroud)