腾飞的梦博客


完成一件事的方法有很多,没有最好的方法,只有这个方法适不适合你,是否符合你的兴趣。

在本站是腾飞的梦博客,主要从事学习、交流、个人展示的一个平台,主要:每日记录、踩过的坑和学习心得!

可以给我提提建议,需要本站的源码请联系站长~


C

        #include <stdio.h>

        int main(){
            print("hello world!");
            return 0;
        }
        

Java

        public static void main(String[] args) {
            System.out.println("hello world!");
        }
        

JavaScript

        window.onload = function(){ 
            alert("hello world!");
            console.log("hello world!");
        }
        

PHP

        echo ("hello world!");
        

Python

        def firstCharUpper(s):
            return s

        print(firstCharUpper("hello world!"))
        

Swift

        import Foundation

        println("hello world!")
        

Shell

        #!/bin/bash
        echo "Hello World !"