Sangyong Gwak님께서 종교전쟁 떡밥을 투척하셔서 덥썩.
Tabs or Spaces?
잘은 모르지만 세미콜론이 대세입니다.
이쁘죠? -- 2016-11-15
#include <iostream> #include <cstdlib> int main() { ;;;;if(true) { ;;;;;;;;std::cout << "Hello, Semicolon;" << std::endl; ;;;;} ;;;;return EXIT_SUCCESS; }
use strict; sub main { ;;;;if(1) { ;;;;;;;;print "Hello, Semicolon;\n"; ;;;;} ;;;;1; } main();
class Java { ;;;;public static void main(String[] args) { ;;;;;;;;if(true) { ;;;;;;;;;;;;System.out.println("Hello, Semicolon;"); ;;;;;;;;} ;;;;} }
'use strict'; function main() { ;;;;if(true) { ;;;;;;;;alert("Hello, Semicolon;"); ;;;;} } main();