标签:
多种语言的的库导入
java
import java.io.File;
import java.awt.*;
python
import os
from os import path
erlang
-module(rebar_edoc).
-export([doc/2, clean/2]).
-include_lib(“eunit/include/eunit.hrl”).
-spec(doc(Config::#config{}, File::string()) -> ok).
rebar_config:get 直接从全局环境中得到库引用
bash
. a.sh
c
include <stdio.h>
c++
include <cstream>
using namespaces std;
using std:endl;
nodejs
module.reports = {}
a = require("")
多种语言的的注释
java
//
/* */
python
#
erlang
-
bash
#
c c++
//
/* */
javascript
//
/* */
标签:
原文地址:http://www.cnblogs.com/simplicity/p/4640936.html