今天是2024年11月25日 第48周 星期一
代人,时大变了。
我们生活在大地上,但我们的梦想超越天空。
“Hello world”的版本间的差异
跳到导航
跳到搜索
小 (→各类代码实现) |
|||
第3行: | 第3行: | ||
==各类代码实现== | ==各类代码实现== | ||
− | === ABAP === | + | ===ABAP=== |
REPORT Z_AKARIN_HELLO. | REPORT Z_AKARIN_HELLO. | ||
WRITE ‘Hello,world’. | WRITE ‘Hello,world’. | ||
+ | |||
+ | === Python === | ||
+ | print ("Hello,world") |
2020年7月19日 (日) 12:10的版本
Hello world为一梗,于程序员中流传,源于《Introduction to the Language B》一书示例程序之首,后用于入门编程语言的第一个程序。
各类代码实现
ABAP
REPORT Z_AKARIN_HELLO.
WRITE ‘Hello,world’.
Python
print ("Hello,world")