新人来报道啦

#include<iostream>
using namespace std;
int main(){
    cout << "Hello world" << endl;
    return 0;
}
90 views
Comments
登录后评论
Sign In
·
#include<iostream>
using namespace std;
int main(){
    cout << "Hello world" << endl;
    return 0;
}

可以高亮语法

确实牛逼 sweat_smile

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }

}
·
console.log('hello')
·
public class Main{ 
    public static void main(String[] args){ 
        System.out.println("hello,world"); 
    } 
}
·
import fmt
func main(){
    fmt.Println("hello,world")
}