Putting into version control.

This commit is contained in:
2026-06-25 15:05:05 -07:00
commit e8aca6d42c
46 changed files with 15277 additions and 0 deletions

39
other/Java.java Normal file
View File

@@ -0,0 +1,39 @@
/** Copyright 20xx Neil Edelman, distributed under the terms of the GNU General
Public License, see copying.txt */
import java.lang.String;
/** Java.
<p>
More {@link url}.
@author Neil
@version 1.0, 20yy-mm
@since 1.0, 20yy-mm */
class Java {
int var;
/** Constructor.
@param ex Something. */
public Java(final String ex) {
this.var = 7;
}
/** Javadocs {@link URL}.
<p>
More.
@param p Thing.
@return Thing.
@throws Exception Thing.
@see package.Class#method(Type)
@see #field
@since 1.0
@deprecated Ohnoz. */
/** @return A synecdochical {@link String}. */
public String toString() {
return "Hi";
}
}