Skip to content

Instantly share code, notes, and snippets.

@sunmeat
Last active August 6, 2024 07:10
Show Gist options
  • Save sunmeat/2f94b337bcdd9d0c232f to your computer and use it in GitHub Desktop.
Save sunmeat/2f94b337bcdd9d0c232f to your computer and use it in GitHub Desktop.
without return
package com.alex.methods;
public class Example {
static double withoutReturn() {
while (true) {
System.out.println("do smth...");
}
}
public static void main(String[] args) {
withoutReturn();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment