Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
notes-app
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Abhay Menon
notes-app
Merge requests
!5
File management has been finished
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
File management has been finished
File-management-for-console-app
into
main
Overview
0
Commits
1
Pipelines
1
Changes
3
Merged
Inseo Kim
requested to merge
File-management-for-console-app
into
main
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
3
Expand
Please go over it, and let me know
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
2ce3753f
1 commit,
2 years ago
3 files
+
33
−
17
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
console/src/main/kotlin/notes/multi/console/Console.kt
+
5
−
4
Options
@@ -3,10 +3,11 @@
@@ -3,10 +3,11 @@
*/
*/
package
notes.multi.console
package
notes.multi.console
import
notes.multi.utilities.StringUtils
import
notes.multi.utilities.Filemanager
import
org.apache.commons.text.WordUtils
fun
main
()
{
fun
main
()
{
println
(
"this is multi setup"
)
// thesea re test functions feel free to use
val
f
=
Filemanager
(
"${System.getProperty("
user
.
dir
")}/test/"
,
"hello.txt"
)
f
.
writefile
(
"hello world"
)
println
(
f
.
openfile
())
}
}
Loading