Last active
December 23, 2015 14:19
-
-
Save freeonterminate/6648532 to your computer and use it in GitHub Desktop.
小木曽
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program 小木曽; | |
uses | |
System.SysUtils; | |
type | |
T小木曽 = record helper for String | |
function バンバン: String; | |
end; | |
function T小木曽.バンバン: String; | |
begin | |
Result := Self + 'バンバン'; | |
end; | |
var | |
物体: String; | |
begin | |
物体 := '机'; | |
Writeln(物体.バンバン); | |
Readln; | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment