cpphs.hs

来自「Haskell」· HS 代码 · 共 18 行

HS
18
字号
{-
-- The main program for cpphs, a simple C pre-processor written in Haskell.

-- Copyright (c) 2004 Malcolm Wallace
-- This file is GPL, although the libraries it uses are either standard
-- Haskell'98 or distributed under the LGPL.
-}
module Main where

import System ( getArgs, getProgName )
import RunCpphs  ( runCpphs )

main :: IO ()
main = do
  args <- getArgs
  prog <- getProgName
  runCpphs prog args

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?