crayon-syntax-highlighter/util/sample/swift.txt

8 lines
111 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
class Human {
var age = 0
func birthday() {
age++;
println('Happy Birthday!');
}
}