Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
Merge branch 'clsEstructuraDatos' of https://github.com/Laifsyn/2024_…
Browse files Browse the repository at this point in the history
…JavaProjects into clsEstructuraDatos
  • Loading branch information
Laifsyn committed Jun 8, 2024
2 parents 469affa + 0eae895 commit cc17655
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,8 @@
import java.util.ArrayList;

import com.utp.clsEstructuraDatos.Estructuras.Pila;
class Num2Words{
public static String to_word(String input, String options){
return "Me llamaste";
}
}
public class Main {
public static void main(String[] args) {
System.out.println(Num2Words.to_word(null, null));;
App app = new App();
app.start();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ fn leer_argumentos(funcion: Funcs) -> Result<Vec<usize>, InquireError> {
.with_help_message(help_message)
.prompt()?
.split(',')
.map(|arg| arg.parse::<usize>()) // hello world
.map(|arg| arg.trim().parse::<usize>())
.collect::<Result<Vec<usize>, _>>()
.map_err(|e| InquireError::Custom(format!("Error: {e}").into()))?;
use Funcs::*;
Expand Down

0 comments on commit cc17655

Please sign in to comment.